Skip to content

Commit

Permalink
Remove support for Node.js version 14
Browse files Browse the repository at this point in the history
Node.js v14 went from LTS to end-of-life status on 2023-04-30¹.

Both of our internal consumers of auspice (auspice.us, nextstrain) use
node v16.

This commit parallels 402828c (2023-03-03) which removed support for
node v12.

¹ https://github.com/nodejs/release#release-schedule
  • Loading branch information
jameshadfield authored and victorlin committed Jun 23, 2023
1 parent 90d57dd commit 15969de
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16, 18, 20]
node: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand All @@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16, 18, 20]
node: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand All @@ -43,7 +43,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16, 18, 20]
node: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand All @@ -57,7 +57,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node: [14, 16, 18, 20]
node: [16, 18, 20]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
Expand Down
2 changes: 1 addition & 1 deletion 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 @@ -7,7 +7,7 @@
"repository": "github:nextstrain/auspice",
"homepage": "https://www.npmjs.com/package/auspice",
"engines": {
"node": "^14 || ^16 || ^18 || ^20",
"node": "^16 || ^18 || ^20",
"npm": "^7 || ^8 || ^9"
},
"bin": {
Expand Down

0 comments on commit 15969de

Please sign in to comment.