Skip to content

Commit

Permalink
fix(ci): update node matrix to reflect true level of support
Browse files Browse the repository at this point in the history
update the nodejs test matrix to run against 16, 18, and 20

BREAKING CHANGE: minimum version of node is 16
  • Loading branch information
esatterwhite committed Dec 4, 2023
1 parent 517d7cb commit 29ede75
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [10.x, 12.x, 14.x]
node-version: [16.x, 18.x, 20.x]

steps:
- name: Checkout
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@
],
"license": "MIT",
"engines": {
"node": ">=10.0.0"
"node": ">=16.0.0"
},
"bugs": {
"url": "https://github.com/esatterwhite/node-seeli/issues"
Expand Down Expand Up @@ -107,14 +107,13 @@
"eslint": "^7.31.0",
"eslint-config-codedependant": "^2.1.6",
"semantic-release": "^17.4.2",
"tap": "^14.10.2",
"tap": "^16.3.9",
"vuepress": "^1.8.2"
},
"tap": {
"jsx": false,
"ts": false,
"browser": false,
"esm": false,
"functions": 93,
"lines": 94,
"branches": 78,
Expand Down

0 comments on commit 29ede75

Please sign in to comment.