Skip to content

Commit ca3e5ef

Browse files
modestyclaude
andcommitted
fix: bump CI Node.js from 20.18.0 to 22.x to fix npm ci crash
npm ci was crashing with "Exit handler never called!" because the package-lock.json was generated with npm 11.x (Node 22) but CI ran npm 10.8.2 (Node 20.18.0). This left node_modules empty, causing all subsequent build steps to fail. Node 22 LTS also satisfies the ^20.19.0 engine requirements of eslint devDependencies. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent cac9bd4 commit ca3e5ef

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@ jobs:
2323
with:
2424
bun-version: 1.2.19
2525

26-
- name: Setup Node.js 20.18.0
26+
- name: Setup Node.js 22.x
2727
uses: actions/setup-node@v4
2828
with:
29-
node-version: 20.18.0
29+
node-version: 22
3030

3131
- name: Install dependencies
3232
run: npm ci

0 commit comments

Comments
 (0)