Skip to content

Commit 051659b

Browse files
authored
feat(node-version): raised the minimum required version to v14.17 (#397) (#410)
BREAKING CHANGE: the minimum required version of node is now v14.17
1 parent f05d3bc commit 051659b

File tree

3 files changed

+190
-181
lines changed

3 files changed

+190
-181
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 3 deletions
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
runs-on: "${{ matrix.os }}"
@@ -38,5 +37,7 @@ jobs:
3837
node-version: 16
3938
cache: npm
4039
- run: npm ci
40+
- name: Ensure dependencies are compatible with the version of node
41+
run: npx ls-engines
4142
- run: npm run lint
4243
- run: npx lockfile-lint --path package-lock.json

0 commit comments

Comments
 (0)