Skip to content

Commit 2b88a6d

Browse files
committed
chore: pin github workflow to node 24
setup-node does not use actual LTS and is currently picking up the current release (26) which doesn't work currently with the yargs version locked in by c8.
1 parent 20f60af commit 2b88a6d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/nodejs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
- name: Use latest Node.js LTS
1616
uses: actions/setup-node@v6
1717
with:
18-
node-version: lts/*
18+
node-version: 24
1919
- name: Install dependencies
20-
run: npm install
20+
run: npm ci
2121
- name: Lint
2222
run: npm run lint
2323

0 commit comments

Comments
 (0)