Skip to content

Commit 65dcffe

Browse files
committed
chore: Upgrade dependencies and use bundled npm on smoke tests
The latest Node.js version should provide the best npm version with it. npm@10 is already older to what Node.js 24 provides (npm@11).
1 parent 42636f6 commit 65dcffe

File tree

1 file changed

+3
-6
lines changed

1 file changed

+3
-6
lines changed

.github/workflows/smoke-tests.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,20 +23,17 @@ jobs:
2323
npm_config_foreground_scripts: "true"
2424
PUPPETEER_SKIP_DOWNLOAD: "true"
2525
steps:
26-
- uses: actions/checkout@v4
27-
- uses: actions/setup-node@v4
26+
- uses: actions/checkout@v5
27+
- uses: actions/setup-node@v6
2828
with:
29+
check-latest: true
2930
node-version: ${{ matrix.node }}
30-
cache: "npm"
3131

3232
- uses: microsoft/setup-msbuild@v2
3333
if: ${{ contains(matrix.runner, 'windows') }}
3434
name: Setup MSBuild
3535
with:
3636
vs-version: 17 # VS2022
37-
38-
- name: Install npm@10
39-
run: npm install -g npm@10
4037

4138
- name: Install dependencies
4239
run: npm ci

0 commit comments

Comments
 (0)