feat: remove node 16 (#875)
<!-- Please use this template for your pull request. --> <!-- Please use the sections that you need and delete other sections --> ## This PR <!-- add the description of the PR here --> Removes Node 16 as it is deprecated. Signed-off-by: Lukas Reining <lukas.reining@codecentric.de> Co-authored-by: Todd Baert <todd.baert@dynatrace.com>
This commit is contained in:
parent
9083df8463
commit
c1878e4eff
|
|
@ -29,7 +29,7 @@ jobs:
|
|||
- name: Setup Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 16
|
||||
node-version: 18
|
||||
registry-url: "https://registry.npmjs.org"
|
||||
cache: 'npm'
|
||||
|
||||
|
|
|
|||
|
|
@ -16,7 +16,7 @@ jobs:
|
|||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
registry-url: 'https://registry.npmjs.org'
|
||||
node-version: 16
|
||||
node-version: 18
|
||||
cache: 'npm'
|
||||
|
||||
- name: Install
|
||||
|
|
|
|||
|
|
@ -16,7 +16,6 @@ jobs:
|
|||
strategy:
|
||||
matrix:
|
||||
node-version:
|
||||
- 16.x
|
||||
- 18.x
|
||||
- 20.x
|
||||
|
||||
|
|
@ -47,7 +46,7 @@ jobs:
|
|||
- uses: actions/checkout@v4
|
||||
- uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 16
|
||||
node-version: 18
|
||||
cache: 'npm'
|
||||
|
||||
- name: Install
|
||||
|
|
@ -80,4 +79,4 @@ jobs:
|
|||
run: npm run build
|
||||
|
||||
- name: SDK e2e tests
|
||||
run: npm run e2e
|
||||
run: npm run e2e
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ jobs:
|
|||
- name: Setup Node
|
||||
uses: actions/setup-node@v4
|
||||
with:
|
||||
node-version: 16
|
||||
node-version: 18
|
||||
registry-url: "https://registry.npmjs.org"
|
||||
cache: 'npm'
|
||||
- name: Build Packages
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
},
|
||||
"homepage": "https://github.com/open-feature/js-sdk#readme",
|
||||
"engines": {
|
||||
"node": ">=16"
|
||||
"node": ">=18"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@rollup/plugin-typescript": "^11.1.6",
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@ Capabilities include:
|
|||
|
||||
### Requirements
|
||||
|
||||
- Node.js version 16+
|
||||
- Node.js version 18+
|
||||
- NestJS version 8+
|
||||
|
||||
### Install
|
||||
|
|
|
|||
|
|
@ -44,7 +44,7 @@
|
|||
|
||||
### Requirements
|
||||
|
||||
- Node.js version 16+
|
||||
- Node.js version 18+
|
||||
|
||||
### Install
|
||||
|
||||
|
|
|
|||
|
|
@ -45,7 +45,7 @@
|
|||
},
|
||||
"homepage": "https://github.com/open-feature/js-sdk#readme",
|
||||
"engines": {
|
||||
"node": ">=16"
|
||||
"node": ">=18"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@openfeature/core": "1.1.0"
|
||||
|
|
|
|||
Loading…
Reference in New Issue