Skip to content

Commit

Permalink
feat(node-versions): raised the minimum required version to v14
Browse files Browse the repository at this point in the history
BREAKING CHANGE: the minimum required version of node is now v14
  • Loading branch information
travi committed Sep 26, 2022
1 parent d9c9869 commit 3f80a98
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/node-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ jobs:
strategy:
matrix:
node:
- 10.0.0
- 12
- 14.0.0
- 14
- 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
verify:
Expand Down
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": "6.1.0",
"engines": {
"node": ">= 10"
"node": "^14 || >= 16"
},
"author": {
"name": "Bastian Krol",
Expand Down

0 comments on commit 3f80a98

Please sign in to comment.