Skip to content

Commit

Permalink
[BREAKING] Drop node v18, v21
Browse files Browse the repository at this point in the history
BREAKING CHANGE:
Support for older Node.js has been dropped.
Only Node.js 20.11.x and >=22.0.0 as well as npm v8 or higher are supported.

JIRA: CPOUI5FOUNDATION-846
  • Loading branch information
flovogt committed Jul 24, 2024
1 parent f2a7923 commit dd72412
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/github-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ jobs:

- uses: actions/checkout@v4

- name: Use Node.js LTS 16.18.0
- name: Use Node.js LTS 20.11.0
uses: actions/setup-node@v4
with:
node-version: 16.18.0
node-version: 20.11.0

- name: Install dependencies
run: npm ci
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"name": "openui5-sample-app",
"version": "0.4.0",
"version": "0.5.0",
"description": "Sample of an OpenUI5 app",
"private": true,
"engines": {
"node": ">=18.14.0",
"npm": ">=9"
"node": "^20.11.0 || >=22.0.0",
"npm": ">= 8"
},
"scripts": {
"start": "ui5 serve",
Expand Down

0 comments on commit dd72412

Please sign in to comment.