Skip to content

Commit 8a51cf0

Browse files
committed
ci: bump Node from 22 to 24 to match local lock-file generator
Local development uses Node 24 (npm 11), and the npm-11-shaped lock file confuses npm 10 (which ships with Node 22). Aligning the runner's Node version with the one that produced package-lock.json sidesteps the npm ci mismatch without per-workflow upgrade steps.
1 parent a99d015 commit 8a51cf0

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup node
2121
uses: actions/setup-node@v4
2222
with:
23-
node-version: 22
23+
node-version: 24
2424
cache: 'npm'
2525
- name: Install dependencies
2626
run: npm ci

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- name: Setup node
1818
uses: actions/setup-node@v1
1919
with:
20-
node-version: 22
20+
node-version: 24
2121
- name: Install dependencies
2222
run: npm ci
2323
- name: Build

0 commit comments

Comments
 (0)