Skip to content

Commit 39a1c47

Browse files
chore: node v24
From October 28, 2025, node v24 enters the LTS phase and it’s time we adopt it as our official node version for one year. See https://nodejs.org/en/about/previous-releases
1 parent 92d237d commit 39a1c47

File tree

9 files changed

+13
-13
lines changed

9 files changed

+13
-13
lines changed

.github/copilot-instructions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ src/[domain]/
7373
- React 19 with TypeScript
7474
- TanStack Router for routing
7575
- TanStack Query for data fetching
76-
- Node.js 22 (required)
76+
- Node.js LTS version (required)
7777
- Yarn 4 workspaces
7878

7979
**State & Data:**

.github/workflows/ci.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
- uses: actions/checkout@v4
1414
- uses: actions/setup-node@v4
1515
with:
16-
node-version: 22
16+
node-version: 24
1717
cache: yarn
1818
- run: yarn set version stable
1919
- run: yarn install --immutable
@@ -28,7 +28,7 @@ jobs:
2828
- uses: actions/checkout@v4
2929
- uses: actions/setup-node@v4
3030
with:
31-
node-version: 22
31+
node-version: 24
3232
cache: yarn
3333
- run: yarn set version stable
3434
- run: yarn install --immutable
@@ -48,7 +48,7 @@ jobs:
4848
- uses: actions/checkout@v4
4949
- uses: actions/setup-node@v4
5050
with:
51-
node-version: 22
51+
node-version: 24
5252
cache: yarn
5353
- run: yarn set version stable
5454
- run: yarn install --immutable
@@ -68,7 +68,7 @@ jobs:
6868
- uses: actions/checkout@v4
6969
- uses: actions/setup-node@v4
7070
with:
71-
node-version: 22
71+
node-version: 24
7272
cache: yarn
7373
- run: yarn set version stable
7474
- run: yarn install --immutable
@@ -105,7 +105,7 @@ jobs:
105105
- uses: actions/checkout@v4
106106
- uses: actions/setup-node@v4
107107
with:
108-
node-version: 22
108+
node-version: 24
109109
cache: yarn
110110
- run: npm install -g wait-on &
111111

.github/workflows/prices-api.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- name: Setup NPM registry in Yarn
1616
uses: actions/setup-node@v4
1717
with:
18-
node-version: '22'
18+
node-version: 24
1919
cache: yarn
2020
registry-url: 'https://registry.npmjs.org'
2121

.github/workflows/rpc-tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
- uses: actions/checkout@v4
1616
- uses: actions/setup-node@v4
1717
with:
18-
node-version: 22
18+
node-version: 24
1919
cache: yarn
2020
- run: yarn set version stable
2121
- run: yarn install --immutable

.github/workflows/storybook.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- uses: actions/checkout@v4
2020
- uses: actions/setup-node@v4
2121
with:
22-
node-version: 22
22+
node-version: 24
2323
cache: yarn
2424

2525
- name: 'Build'

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ src/[domain]/
7373
- React 19 with TypeScript
7474
- TanStack Router for routing
7575
- TanStack Query for data fetching
76-
- Node.js 22 (required)
76+
- Node.js LTS version (required)
7777
- Yarn 4 workspaces
7878

7979
**State & Data:**

apps/main/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"type": "module",
66
"engines": {
7-
"node": "22"
7+
"node": "24"
88
},
99
"scripts": {
1010
"dev": "vite",

apps/router-api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"type": "module",
66
"engines": {
7-
"node": "22"
7+
"node": "24"
88
},
99
"scripts": {
1010
"dev": "tsx watch src/dev.ts",

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"version": "2.1.0",
44
"private": true,
55
"engines": {
6-
"node": "22"
6+
"node": "24"
77
},
88
"workspaces": [
99
"apps/*",

0 commit comments

Comments
 (0)