diff options
author | Rich Trott <rtrott@gmail.com> | 2021-04-19 04:51:35 -0700 |
---|---|---|
committer | Rich Trott <rtrott@gmail.com> | 2021-04-19 08:11:04 -0700 |
commit | d4f33f109e7c6804f3819a1604a51223d3ea5718 (patch) | |
tree | e61289165fc7a038e37add275844b7db01dd2c9a /.github | |
parent | 36decec87f7b942146d13cdca7c609dfdb9f847d (diff) | |
download | node-new-d4f33f109e7c6804f3819a1604a51223d3ea5718.tar.gz |
tools: skip macOS GitHub Actions test on doc-only changes
We skip macOS GitHub Actions pushes on doc-only changes but the
intention was no doubt to skip them on pull requests too. We still run
the tests on Linux, so addons tests will still run when addons docs
change.
PR-URL: https://github.com/nodejs/node/pull/38296
Reviewed-By: Richard Lau <rlau@redhat.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
Reviewed-By: Michaƫl Zasso <targos@protonmail.com>
Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/test-macos.yml | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/test-macos.yml b/.github/workflows/test-macos.yml index 65bad59592..5f516608c2 100644 --- a/.github/workflows/test-macos.yml +++ b/.github/workflows/test-macos.yml @@ -2,6 +2,8 @@ name: test-macOS on: pull_request: + paths-ignore: + - 'doc/**' push: branches: - master |