Skip to content

Commit

Permalink
chore: drop support for nodejs16 and lower
Browse files Browse the repository at this point in the history
BREAKING CHANGE: drop support for nodejs16 and lower

Signed-off-by: Samarpan Bhattacharya <[email protected]>
  • Loading branch information
samarpanB authored and achrinza committed Nov 16, 2023
1 parent 8f0a986 commit 3d54e27
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 14 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [12, 14, 16]
node-version: [18, 20]
steps:
- name: Git checkout
uses: actions/checkout@v2
Expand All @@ -31,10 +31,10 @@ jobs:
timeout-minutes: 60
steps:
- uses: actions/checkout@v2
- name: Use Node.js 14
- name: Use Node.js 18
uses: actions/setup-node@v2
with:
node-version: 14
node-version: 18
- name: Bootstrap project
run: |
npm ci --ignore-scripts
Expand All @@ -49,10 +49,10 @@ jobs:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js 14
- name: Use Node.js 18
uses: actions/setup-node@v2
with:
node-version: 14
node-version: 18
- name: Bootstrap project
run: |
npm ci --ignore-scripts
Expand Down
16 changes: 8 additions & 8 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 @@ -3,7 +3,7 @@
"version": "4.0.3",
"description": "Loopback REST Connector",
"engines": {
"node": ">=10"
"node": ">=18"
},
"keywords": [
"LoopBack",
Expand Down

0 comments on commit 3d54e27

Please sign in to comment.