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 Nov 13, 2023
1 parent dbd4464 commit eb99dbe
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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
Expand Down Expand Up @@ -60,10 +60,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
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@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
fetch-depth: 0
- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@8f152de45cc393bb48ce5d89d36b731f54556e65 # v4.0.0
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.3",
"description": "Building blocks for LoopBack connectors",
"engines": {
"node": ">=16"
"node": ">=18"
},
"author": "IBM Corp.",
"keywords": [
Expand Down

0 comments on commit eb99dbe

Please sign in to comment.