File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1616 tags-ignore :
1717 - ' **'
1818jobs :
19- checkExecution :
20- runs-on : ubuntu-latest
21- outputs :
22- shouldExecute : ${{ steps.stepCheckExecution.outputs.shouldExecute }}
23- steps :
24- - name : Dump GitHub context
25- run : |
26- echo "::group::github context"
27- echo "$GITHUB_CONTEXT"
28- echo "::endgroup::"
29- env :
30- GITHUB_CONTEXT : ${{ toJson(github) }}
31- - id : stepCheckExecution
32- name : Check for execution
33- uses : shiftcode/github-action-skip@v4.0.0
34- with :
35- skipOnCommitMsg : ' [skip_build]'
36- githubToken : ${{ secrets.GITHUB_TOKEN }}
3719 test :
3820 runs-on : ubuntu-latest
39- needs : checkExecution
40- # only execute if not skipped by commit message
41- if : needs.checkExecution.outputs.shouldExecute == 'true'
4221 strategy :
4322 matrix :
4423 # Test with Node.js 24 and v25
6746 permissions :
6847 contents : write
6948 packages : write
70- needs : [checkExecution, test]
71- # only execute if not skipped by commit message
72- if : needs.checkExecution.outputs.shouldExecute == 'true'
49+ needs : test
7350 steps :
7451 # checkout branch
7552 - name : Checkout
You can’t perform that action at this time.
0 commit comments