File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 22#
33# Re-compiles all Github Actions and verifies that there is no diff,
44# because that would indicate that the PR author forgot to run `npm run gh-actions-build`
5- # and commit the re-bundled the javascript sources.
5+ # and commit the rebuilt javascript sources.
66
77declare -r GREEN=' \033[0;32m'
88declare -r RED=' \033[0;31m'
Original file line number Diff line number Diff line change 99 verify :
1010 runs-on : ubuntu-latest
1111 steps :
12- - name : Checkout
13- # v4.1.1
14- uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
12+ # v5.0.0
13+ - uses : actions/checkout@ff7abcd0c3c05ccf6adc123a8cd1fd4fb30fb493
1514
1615 - name : Setup Node
17- uses : actions/setup-node@v4
16+ # v4.4.0
17+ uses : actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e
1818 with :
19- node-version-file : .nvmrc
19+ node-version-file : " .nvmrc"
2020 cache : npm
21+ cache-dependency-path : package-lock.json
2122
22- - name : Install dependencies
23- run : npm ci
23+ - run : npm ci
2424
2525 - name : Verify Javascript Action Builds
2626 run : ./.github/scripts/verifyActions.sh
You can’t perform that action at this time.
0 commit comments