Skip to content

Commit 12fdf9d

Browse files
committed
Try to fix GitHub Actions
1 parent ea0a58d commit 12fdf9d

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/nodejs.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -7,17 +7,14 @@ jobs:
77
runs-on: ubuntu-latest
88

99
steps:
10-
- uses: actions/checkout@v4
10+
- uses: actions/checkout@v6
1111
with:
1212
persist-credentials: false
1313
- name: Install Node.js
14-
uses: actions/setup-node@v4
14+
uses: actions/setup-node@v6
1515
with:
16-
node-version: 22
16+
node-version: 24
1717
- 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
18+
run: npm ci
2219
- name: Run tests
2320
run: npm test

0 commit comments

Comments
 (0)