From b2b988c81cb46dcfe0d07876ad1f917a217b1706 Mon Sep 17 00:00:00 2001 From: bzvnr Date: Sat, 22 Apr 2023 17:25:59 -0400 Subject: [PATCH] Separate pull_request, push --- .github/workflows/ci.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 36ffac6..3925d96 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,7 +1,16 @@ # setup and use a GitHub runner to run unit tests name: Jest Unit Tests -on: [pull_request, push]: +on: + pull_request: + paths-ignore: + - 'dist/**' + - '.editorconfig' + - '.gitignore' + - 'index.html' + - 'LICENSE' + - 'README.md' + push: paths-ignore: - 'dist/**' - '.editorconfig'