File tree Expand file tree Collapse file tree 1 file changed +7
-9
lines changed
Expand file tree Collapse file tree 1 file changed +7
-9
lines changed Original file line number Diff line number Diff line change @@ -16,18 +16,16 @@ jobs:
1616 node : [20.x, 22.x, 23.x]
1717 fail-fast : false
1818 runs-on : ${{ matrix.runner }}
19+ timeout-minutes : 15
20+ env :
21+ npm_config_loglevel : verbose
22+ npm_config_foreground_scripts : true
1923 steps :
2024 - uses : actions/checkout@v4
2125 - uses : actions/setup-node@v4
2226 with :
2327 node-version : ${{ matrix.node }}
24- - name : Get npm cache directory
25- id : npm-cache-dir
26- shell : bash
27- run : echo "dir=$(npm config get cache)" >> ${GITHUB_OUTPUT}
28- - uses : actions/cache@v4
29- with :
30- key : ${{ matrix.runner }}-node-${{ matrix.node }}-${{ hashFiles('package-lock.json') }}
31- path : ${{ steps.npm-cache-dir.outputs.dir }}
32- - run : npm ci --loglevel verbose
28+ cache : " npm"
29+ - run : npm install -g npm@10
30+ - run : npm run ci
3331 - run : npm run test-smoke
You can’t perform that action at this time.
0 commit comments