diff options
author | 2021-05-03 11:27:21 -0600 | |
---|---|---|
committer | 2021-05-03 11:27:21 -0600 | |
commit | 52b592a04e10af9e03e2c7c1a7582ed35ab17c14 (patch) | |
tree | 29dae217c97002cc2165e4aca4c8b8beeda7a45d | |
parent | 2ac06010a4e91a4b0fa5559aeaad1bcb6294e566 (diff) | |
download | astro-52b592a04e10af9e03e2c7c1a7582ed35ab17c14.tar.gz astro-52b592a04e10af9e03e2c7c1a7582ed35ab17c14.tar.zst astro-52b592a04e10af9e03e2c7c1a7582ed35ab17c14.zip |
Attempt to fix CI skipping (#165)
-rw-r--r-- | .github/workflows/nodejs.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 2a5e7f166..cf5e2c0d7 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -25,6 +25,7 @@ jobs: do_not_skip: '["pull_request", "workflow_dispatch", "schedule"]' test: needs: skip_test # allow skip_test to cancel this job if it’s not needed + if: ${{ needs.pre_job.outputs.should_skip != 'true' }} runs-on: ${{ matrix.os }} strategy: matrix: |