Skip to content

Commit

Permalink
feat(node-versions): dropped support for node v14
Browse files Browse the repository at this point in the history
BREAKING CHANGE: node v14 is no longer supported
  • Loading branch information
travi committed Sep 6, 2022
1 parent b01ce62 commit 400eb4f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,16 +30,15 @@ jobs:
strategy:
matrix:
node:
- 14.18.0
- 16.0.0
- 16
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: npm
node-version: ${{ matrix.node }}
- run: npm clean-install
- run: npm test
trigger-release:
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 @@ -4,7 +4,7 @@
"license": "MIT",
"version": "0.0.0-semantically-released",
"engines": {
"node": "^14.18.0 || >=16.0.0"
"node": ">=16.0.0"
},
"author": "Matt Travi <[email protected]> (https://matt.travi.org)",
"repository": "form8ion/javascript",
Expand Down

0 comments on commit 400eb4f

Please sign in to comment.