Skip to content
Merged
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
4 changes: 2 additions & 2 deletions .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: 20.11.0
node-version: 22.20.0

- name: Install dependencies
run: npm ci
run: npm ci --engine-strict # --engine-strict is used to fail-fast if deps require node versions unsupported by the repo

- name: Perform ESLint check
run: npm run lint
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
strategy:
fail-fast: false # Do not stop other jobs if one fails
matrix:
version: [20, 22, 24]
version: [22, 24]
os: [ubuntu-24.04, windows-2025, macos-15]
runs-on: ${{ matrix.os }}
steps:
Expand Down
20 changes: 10 additions & 10 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
],
"type": "module",
"engines": {
"node": "^20.11.0 || >=22.0.0",
"node": "^22.20.0 || >=24.0.0",
"npm": ">= 8"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/builder/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"./internal/jsdoc/template/publish": "./lib/processors/jsdoc/lib/ui5/template/publish.js"
},
"engines": {
"node": "^20.11.0 || >=22.0.0",
"node": "^22.20.0 || >=24.0.0",
"npm": ">= 8"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"./package.json": "./package.json"
},
"engines": {
"node": "^20.11.0 || >=22.0.0",
"node": "^22.20.0 || >=24.0.0",
"npm": ">= 8"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/documentation/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 packages/documentation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
],
"type": "module",
"engines": {
"node": "^20.11.0 || >=22.0.0",
"node": "^22.20.0 || >=24.0.0",
"npm": ">= 8"
}
}
}
2 changes: 1 addition & 1 deletion packages/fs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"./internal/ResourceTagCollection": "./lib/ResourceTagCollection.js"
},
"engines": {
"node": "^20.11.0 || >=22.0.0",
"node": "^22.20.0 || >=24.0.0",
"npm": ">= 8"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/logger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"./internal/loggers/*": "./lib/loggers/*.js"
},
"engines": {
"node": "^20.11.0 || >=22.0.0",
"node": "^22.20.0 || >=24.0.0",
"npm": ">= 8"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/project/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"./package.json": "./package.json"
},
"engines": {
"node": "^20.11.0 || >=22.0.0",
"node": "^22.20.0 || >=24.0.0",
"npm": ">= 8"
},
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/server/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"./package.json": "./package.json"
},
"engines": {
"node": "^20.11.0 || >=22.0.0",
"node": "^22.20.0 || >=24.0.0",
"npm": ">= 8"
},
"scripts": {
Expand Down