Skip to content

Commit da125bf

Browse files
authored
chore: add Node 24 to CI matrix and bump dev Node to 22 (#270)
- Add Node 24.x (current Active LTS) to the CI test matrix - Bump .nvmrc from 20.18.0 to 22 (Node 20 EOLs April 30, 2026) - Add engines field (>=20) to account-sdk and account-ui package.json Made-with: Cursor
1 parent 8501cf2 commit da125bf

4 files changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787

8888
strategy:
8989
matrix:
90-
node-version: [20.x, 22.x]
90+
node-version: [20.x, 22.x, 24.x]
9191

9292
steps:
9393
- name: Checkout

.nvmrc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
20.18.0
1+
22

packages/account-sdk/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,9 @@
113113
"README.md",
114114
"LICENSE"
115115
],
116+
"engines": {
117+
"node": ">=20"
118+
},
116119
"sideEffects": false,
117120
"repository": "https://github.com/base/account-sdk.git",
118121
"author": "Base",

packages/account-ui/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@
3535
"default": "./dist/frameworks/svelte/index.js"
3636
}
3737
},
38+
"engines": {
39+
"node": ">=20"
40+
},
3841
"sideEffects": false,
3942
"repository": "https://github.com/base/account-sdk.git",
4043
"author": "Base",

0 commit comments

Comments
 (0)