Skip to content

Commit aaa24f3

Browse files
isaacrowntreeclaude
andcommitted
fix: use Node 24 + npm install in docs CI workflow
Lockfile was generated with npm 11 (Node 24), incompatible with npm ci on Node 22. Match CI to local dev environment. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 9b628fc commit aaa24f3

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/deploy-docs.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ on:
66
paths:
77
- "docs/**"
88
- "package.json"
9+
- "package-lock.json"
910
- ".github/workflows/deploy-docs.yml"
1011
workflow_dispatch:
1112

@@ -26,9 +27,9 @@ jobs:
2627

2728
- uses: actions/setup-node@v4
2829
with:
29-
node-version: 22
30+
node-version: 24
3031

31-
- run: npm ci
32+
- run: npm install
3233

3334
- run: npm run docs:build
3435

0 commit comments

Comments
 (0)