Update node

Signed-off-by: Sacha Al Himdani <sacha@getprobo.com>
This commit is contained in:
Sacha Al Himdani
2025-09-10 17:32:41 +02:00
parent 9a7294274b
commit 02c1009c23
5 changed files with 14 additions and 14 deletions

View File

@@ -24,7 +24,7 @@ jobs:
go-version: "1.25" go-version: "1.25"
- uses: "actions/setup-node@v4" - uses: "actions/setup-node@v4"
with: with:
node-version: 22 node-version-file: ".nvmrc"
- run: "npm ci" - run: "npm ci"
- uses: "docker/setup-qemu-action@v3" - uses: "docker/setup-qemu-action@v3"
- uses: "docker/setup-buildx-action@v3" - uses: "docker/setup-buildx-action@v3"
@@ -58,7 +58,7 @@ jobs:
go-version: "1.25" go-version: "1.25"
- uses: "actions/setup-node@v4" - uses: "actions/setup-node@v4"
with: with:
node-version: 22 node-version-file: ".nvmrc"
- run: "npm ci" - run: "npm ci"
- run: "make build" - run: "make build"
- run: "make test" - run: "make test"

View File

@@ -31,7 +31,7 @@ jobs:
- name: Set up Node.js - name: Set up Node.js
uses: actions/setup-node@v4 uses: actions/setup-node@v4
with: with:
node-version: "22" node-version-file: ".nvmrc"
cache: "npm" cache: "npm"
- name: Install dependencies - name: Install dependencies

2
.nvmrc
View File

@@ -1 +1 @@
v22.13.1 v24.4.0

16
package-lock.json generated
View File

@@ -14,7 +14,7 @@
"turbo": "^2.5.3" "turbo": "^2.5.3"
}, },
"engines": { "engines": {
"node": "22.x" "node": "v24.4.0"
} }
}, },
"apps/console": { "apps/console": {
@@ -1036,13 +1036,13 @@
} }
}, },
"node_modules/@eslint/plugin-kit": { "node_modules/@eslint/plugin-kit": {
"version": "0.3.3", "version": "0.3.5",
"resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.3.tgz", "resolved": "https://registry.npmjs.org/@eslint/plugin-kit/-/plugin-kit-0.3.5.tgz",
"integrity": "sha512-1+WqvgNMhmlAambTvT3KPtCl/Ibr68VldY2XY40SL1CE0ZXiakFR/cbTspaF5HsnpDMvcYYoJHfl4980NBjGag==", "integrity": "sha512-Z5kJ+wU3oA7MMIqVR9tyZRtjYPr4OC004Q4Rw7pgOKUOKkJfZ3O24nz3WYfGRpMDNmcOi3TwQOmgm7B7Tpii0w==",
"dev": true, "dev": true,
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {
"@eslint/core": "^0.15.1", "@eslint/core": "^0.15.2",
"levn": "^0.4.1" "levn": "^0.4.1"
}, },
"engines": { "engines": {
@@ -1050,9 +1050,9 @@
} }
}, },
"node_modules/@eslint/plugin-kit/node_modules/@eslint/core": { "node_modules/@eslint/plugin-kit/node_modules/@eslint/core": {
"version": "0.15.1", "version": "0.15.2",
"resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.1.tgz", "resolved": "https://registry.npmjs.org/@eslint/core/-/core-0.15.2.tgz",
"integrity": "sha512-bkOp+iumZCCbt1K1CmWf0R9pM5yKpDv+ZXtvSyQpudrI9kuFLp+bM2WOPXImuD/ceQuaa8f5pj93Y7zyECIGNA==", "integrity": "sha512-78Md3/Rrxh83gCxoUc0EiciuOHsIITzLy53m3d9UyiW8y9Dj2D29FeETqyKA+BRK76tnTp6RXWb3pCay8Oyomg==",
"dev": true, "dev": true,
"license": "Apache-2.0", "license": "Apache-2.0",
"dependencies": { "dependencies": {

View File

@@ -2,7 +2,7 @@
"name": "probo", "name": "probo",
"description": "Probo monorepo containing applications and shared packages", "description": "Probo monorepo containing applications and shared packages",
"engines": { "engines": {
"node": "22.x" "node": "v24.4.0"
}, },
"workspaces": [ "workspaces": [
"apps/*", "apps/*",
@@ -25,6 +25,6 @@
"license": "MIT", "license": "MIT",
"packageManager": "npm@11.1.0", "packageManager": "npm@11.1.0",
"volta": { "volta": {
"node": "22.16.0" "node": "v24.4.0"
} }
} }