Skip to content

Commit 70895a8

Browse files
Merge pull request #1778 from curvefi/chore/node
chore: node lts
2 parents 3107b6f + 92b42ac commit 70895a8

File tree

9 files changed

+397
-370
lines changed

9 files changed

+397
-370
lines changed

.github/workflows/ci.yaml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: CI
22
on: [push]
33
env:
44
DO_NOT_TRACK: 1
5+
VERCEL_ALLOW_NODEJS_24: 1
56
IBM_TELEMETRY_DISABLED: true
67
permissions:
78
contents: read
@@ -13,7 +14,7 @@ jobs:
1314
- uses: actions/checkout@v4
1415
- uses: actions/setup-node@v4
1516
with:
16-
node-version: 22
17+
node-version: 24
1718
cache: yarn
1819
- run: yarn set version stable
1920
- run: yarn install --immutable
@@ -28,7 +29,7 @@ jobs:
2829
- uses: actions/checkout@v4
2930
- uses: actions/setup-node@v4
3031
with:
31-
node-version: 22
32+
node-version: 24
3233
cache: yarn
3334
- run: yarn set version stable
3435
- run: yarn install --immutable
@@ -48,7 +49,7 @@ jobs:
4849
- uses: actions/checkout@v4
4950
- uses: actions/setup-node@v4
5051
with:
51-
node-version: 22
52+
node-version: 24
5253
cache: yarn
5354
- run: yarn set version stable
5455
- run: yarn install --immutable
@@ -76,7 +77,7 @@ jobs:
7677
- uses: actions/checkout@v4
7778
- uses: actions/setup-node@v4
7879
with:
79-
node-version: 22
80+
node-version: 24
8081
cache: yarn
8182
- run: yarn set version stable
8283
- run: yarn install --immutable
@@ -115,7 +116,7 @@ jobs:
115116
- uses: actions/checkout@v4
116117
- uses: actions/setup-node@v4
117118
with:
118-
node-version: 22
119+
node-version: 24
119120
cache: yarn
120121
- run: npm install -g wait-on &
121122

.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: 2 additions & 2 deletions
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",
@@ -38,7 +38,7 @@
3838
"ui": "*",
3939
"vest": "^5.4.6",
4040
"vite-plugin-svgr": "^4.5.0",
41-
"vite-plugin-vercel": "9.0.8"
41+
"vite-plugin-vercel": "9.1.1"
4242
},
4343
"peerDependencies": {
4444
"@curvefi/api": "*",

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)