Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update node.js to v22 #843

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ stages:
policy: pull

install:
image: node:20.13.1-slim
image: node:22.12.0-slim
stage: install
script:
- npm ci
Expand All @@ -35,7 +35,7 @@ install:
- master

lint:
image: node:20.13.1-slim
image: node:22.12.0-slim
stage: lint
script:
- npm run nx run-many -- --all --target=lint
Expand All @@ -48,7 +48,7 @@ lint:
- master

build-runner-commons:
image: node:20.13.1-slim
image: node:22.12.0-slim
stage: build
script:
- npm run nx build runner-commons
Expand All @@ -63,7 +63,7 @@ build-runner-commons:
- master

build-runner-cypress:
image: node:20.13.1-slim
image: node:22.12.0-slim
stage: build
script:
- npm run nx generate:step-definitions runner-cypress
Expand All @@ -85,7 +85,7 @@ build-runner-cypress:
- master

build-assistant:
image: node:20.13.1-slim
image: node:22.12.0-slim
stage: build
script:
- npm run nx react:build assistant
Expand All @@ -104,7 +104,7 @@ build-assistant:
- master

build-docs:
image: node:20.13.1-slim
image: node:22.12.0-slim
stage: build
script:
- npm run nx build docs
Expand Down Expand Up @@ -135,7 +135,7 @@ test-cypress:
- master

.publish:
image: node:20.13.1-slim
image: node:22.12.0-slim
stage: publish
cache:
- <<: *node_modules-cache
Expand Down
70 changes: 47 additions & 23 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
"@nxrocks/nx-flutter": "^9.0.0",
"@theunderscorer/nx-semantic-release": "2.4.0",
"@types/jest": "29.5.14",
"@types/node": "20.12.12",
"@types/node": "22.10.5",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"eslint": "8.57.1",
Expand All @@ -73,6 +73,6 @@
"packages/*"
],
"engines": {
"node": "^20.0.0"
"node": "^22.0.0"
}
}
2 changes: 1 addition & 1 deletion packages/a11y-dashboard/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22.9.0-bullseye-slim as base
FROM node:22.12.0-bullseye-slim as base

ENV HOME="/app"

Expand Down
2 changes: 1 addition & 1 deletion packages/assistant/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@
"@testing-library/user-event": "14.5.2",
"@types/jest": "29.5.14",
"@types/jquery": "3.5.32",
"@types/node": "20.12.12",
"@types/node": "22.10.5",
"@types/react": "18.3.18",
"@types/react-dom": "18.3.5",
"@types/styled-components": "5.1.34",
Expand Down
2 changes: 1 addition & 1 deletion packages/docker-images/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:22.2.0-bookworm-slim as base
FROM node:22.12.0-bookworm-slim as base

ENV PROJECT_WORKSPACE="/workspace"
ADD uuv-command-builder.sh /
Expand Down
2 changes: 1 addition & 1 deletion packages/runner-cypress/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@
},
"devDependencies": {
"@types/minimist": "1.2.5",
"@types/node": "20.12.12",
"@types/node": "22.10.5",
"chalk": "^4.1.2",
"cross-env": "7.0.3",
"eslint-plugin-cypress": "2.15.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/runner-playwright/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
},
"devDependencies": {
"@types/minimist": "1.2.5",
"@types/node": "20.12.12",
"@types/node": "22.10.5",
"chalk": "^4.1.2",
"cross-env": "7.0.3",
"eslint-plugin-cucumber": "2.0.0",
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-extension/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
},
"devDependencies": {
"@types/mocha": "^10.0.6",
"@types/node": "20.x",
"@types/node": "22.x",
"@types/vscode": "^1.90.0",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
Expand Down
Loading