File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 branches : [ "main" ]
88
99jobs :
10- quality :
11- runs-on : ubuntu-latest
12- strategy :
13- matrix :
14- node-version : [ '24' ]
15- steps :
16- - uses : actions/checkout@v6.0.2
17- - name : Use Node.js ${{ matrix.node-version }}
18- uses : actions/setup-node@v6.4.0
19- with :
20- node-version : ${{ matrix.node-version }}
21- cache : " npm"
22- - run : npm ci
23- - run : npm run build
24- - run : npm test --if-present
25-
2610 publish :
2711 runs-on : ubuntu-latest
2812 if : ${{ github.ref == 'refs/heads/main' }}
29- needs : [ quality ]
3013 permissions :
31- contents : write # semantic-release needs to push version tags back to main
32- issues : write # semantic-release comments on GitHub issues
33- pull-requests : write # semantic-release comments on PRs
34- id-token : write # OIDC trusted publishing
14+ contents : write # semantic-release needs to push version tags back to main
15+ issues : write # semantic-release comments on GitHub issues
16+ pull-requests : write # semantic-release comments on PRs
17+ id-token : write # OIDC trusted publishing
3518 steps :
3619 - uses : actions/checkout@v6.0.2
3720 - name : Use Node.js 24
3821 uses : actions/setup-node@v6.4.0
3922 with :
40- node-version : ' 24 '
23+ node-version : " 24 "
4124 cache : " npm"
4225 - run : npm ci
4326 - run : npm run build
You can’t perform that action at this time.
0 commit comments