Skip to content

Commit

Permalink
chore: drop Node.js 14 and lower
Browse files Browse the repository at this point in the history
Breaking change: drop Node.js 14 version and lower

Signed-off-by: dhmlau <[email protected]>
  • Loading branch information
dhmlau committed Aug 14, 2023
1 parent f49704e commit 60b98f5
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
node-version: [10, 12, 14, 16]
node-version: [16, 18]
include:
- os: macos-latest
node-version: 14 # LTS
node-version: 16 # LTS
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
Expand All @@ -45,10 +45,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 14
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16
- name: Bootstrap project
run: |
npm ci --ignore-scripts
Expand All @@ -63,10 +63,10 @@ jobs:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Use Node.js 14
- name: Use Node.js 16
uses: actions/setup-node@v3
with:
node-version: 14
node-version: 16
- name: Bootstrap project
run: |
npm ci --ignore-scripts
Expand Down
4 changes: 2 additions & 2 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 @@ -4,7 +4,7 @@
"license": "MIT",
"version": "4.0.8",
"engines": {
"node": ">=10"
"node": ">=16"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 60b98f5

Please sign in to comment.