Skip to content

Commit 7ab65f8

Browse files
authored
feat(node-version): raised the minimum required version to v14.17
BREAKING CHANGE: the minimum required version of node is now v14.17
1 parent 9105df6 commit 7ab65f8

File tree

3 files changed

+112
-109
lines changed

3 files changed

+112
-109
lines changed

.github/workflows/test.yml

+4-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,8 @@ jobs:
1313
strategy:
1414
matrix:
1515
node-version:
16-
- 10
17-
- 12
18-
- 14
16+
- '14.17'
17+
- 16
1918
os:
2019
- ubuntu-latest
2120
- macos-latest
@@ -31,6 +30,8 @@ jobs:
3130
node-version: "${{ matrix.node-version }}"
3231
cache: npm
3332
- run: npm ci
33+
- name: Ensure dependencies are compatible with the version of node
34+
run: npx ls-engines
3435
- run: "npm run test:ci"
3536
test:
3637
runs-on: ubuntu-latest

package-lock.json

+105-103
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,13 @@
3333
"get-stream": "6.0.1",
3434
"git-log-parser": "1.2.0",
3535
"nyc": "15.1.0",
36-
"semantic-release": "17.4.7",
36+
"semantic-release": "18.0.0",
3737
"sinon": "11.1.2",
3838
"tempy": "1.0.1",
3939
"xo": "0.28.3"
4040
},
4141
"engines": {
42-
"node": ">=10.18"
42+
"node": ">=14.17"
4343
},
4444
"files": [
4545
"lib",
@@ -71,7 +71,7 @@
7171
"all": true
7272
},
7373
"peerDependencies": {
74-
"semantic-release": ">=16.0.0 <18.0.0"
74+
"semantic-release": ">=18.0.0"
7575
},
7676
"prettier": {
7777
"printWidth": 120,

0 commit comments

Comments
 (0)