Skip to content

Commit 41ba8b9

Browse files
committed
Another attempt
1 parent 39f9f56 commit 41ba8b9

File tree

1 file changed

+7
-9
lines changed

1 file changed

+7
-9
lines changed

.github/workflows/smoke-tests.yml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)