From 4d58ce5642d4ca28d9c3b44c1069e206503dc013 Mon Sep 17 00:00:00 2001 From: Josh Mock Date: Tue, 24 Oct 2023 15:31:39 -0500 Subject: [PATCH] Ignore paths before running unit tests --- .github/workflows/nodejs.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index ca00cb372..6443f0ee8 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -1,7 +1,19 @@ --- name: Node CI -on: [push, pull_request] +on: + push: + paths-ignore: &ignore + - '**/*.md' + - '**/*.asciidoc' + - '**/*.txt' + - 'docs/**' + - '.ci/**' + - '.buildkite/**' + - 'scripts/**' + - 'catalog-info.yaml' + pull_request: + paths-ignore: *ignore jobs: test: