We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ea0a58d commit 12fdf9dCopy full SHA for 12fdf9d
.github/workflows/nodejs.yml
@@ -7,17 +7,14 @@ jobs:
7
runs-on: ubuntu-latest
8
9
steps:
10
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v6
11
with:
12
persist-credentials: false
13
- name: Install Node.js
14
- uses: actions/setup-node@v4
+ uses: actions/setup-node@v6
15
16
- node-version: 22
+ node-version: 24
17
- name: Install dependencies
18
- # --build-from-source is used to work around npm being an awful piece of software
19
- # https://github.com/npm/cli/issues/4828
20
- # https://sharp.pixelplumbing.com/install#building-from-source
21
- run: npm install --build-from-source
+ run: npm ci
22
- name: Run tests
23
run: npm test
0 commit comments