Skip to content

Commit c6edf42

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

File tree

3 files changed

+135
-129
lines changed

3 files changed

+135
-129
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 }}"
@@ -39,5 +38,7 @@ jobs:
3938
node-version: "${{ matrix.node-version }}"
4039
cache: npm
4140
- run: npm ci
41+
- name: Ensure dependencies are compatible with the version of node
42+
run: npx ls-engines
4243
- run: npm run lint
4344
- run: npx lockfile-lint --path package-lock.json

0 commit comments

Comments
 (0)