Skip to content

Commit dfc76f9

Browse files
fix(ci): remove pnpm version conflict + bump Node to 24 (#17)
- Remove explicit pnpm version from action-setup (read from packageManager field in package.json instead — avoids ERR_PNPM_BAD_PM_VERSION) - Bump Node.js from 22 to 24 (Node 20 is deprecated on GitHub Actions, actions are being forced to Node 24)
1 parent ed6689b commit dfc76f9

2 files changed

Lines changed: 2 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,11 @@ jobs:
2525

2626
- name: Setup pnpm
2727
uses: pnpm/action-setup@v4
28-
with:
29-
version: 10
3028

3129
- name: Setup Node.js
3230
uses: actions/setup-node@v4
3331
with:
34-
node-version: 22
32+
node-version: 24
3533
cache: pnpm
3634

3735
- name: Install dependencies

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,11 @@ jobs:
2727

2828
- name: Setup pnpm
2929
uses: pnpm/action-setup@v4
30-
with:
31-
version: 10
3230

3331
- name: Setup Node.js
3432
uses: actions/setup-node@v4
3533
with:
36-
node-version: 22
34+
node-version: 24
3735
cache: pnpm
3836
registry-url: https://registry.npmjs.org
3937

0 commit comments

Comments
 (0)