Skip to content

Commit

Permalink
chore: drop support for Node.js 16 and lower
Browse files Browse the repository at this point in the history
BREAKING-CHANGE: drop support for Node.js 16 and lower

Signed-off-by: dhmlau <[email protected]>
  • Loading branch information
dhmlau committed Oct 13, 2023
1 parent 4f97e9f commit 3ea6378
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 8 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/continuous-integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [16, 18, 20]
node-version: [18, 20]
include:
- os: macos-latest
node_version: 16
node_version: 18
- os: windows-latest
node_version: 16
node_version: 18
fail-fast: false
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
Expand Down Expand Up @@ -60,10 +60,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: 16
node-version: 18
- name: Bootstrap project
run: npm ci --ignore-scripts
- name: Verify code linting
Expand All @@ -76,10 +76,10 @@ jobs:
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
with:
fetch-depth: 0
- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # v3.8.1
with:
node-version: 16
node-version: 18
- name: Bootstrap project
run: npm ci --ignore-scripts
- name: Verify commit linting
Expand Down
1 change: 1 addition & 0 deletions .npmignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ loopback-connector-*.tgz
coverage
.vscodetest
.travis.yml
test
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": "6.0.2",
"description": "Building blocks for LoopBack connectors",
"engines": {
"node": ">=16"
"node": ">=18"
},
"author": "IBM Corp.",
"keywords": [
Expand Down

0 comments on commit 3ea6378

Please sign in to comment.