Skip to content

Commit 36d1665

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 c4d0d8a commit 36d1665

File tree

3 files changed

+152
-124
lines changed

3 files changed

+152
-124
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
- macos-latest
@@ -29,6 +28,8 @@ jobs:
2928
node-version: "${{ matrix.node-version }}"
3029
cache: npm
3130
- run: npm ci
31+
- name: Ensure dependencies are compatible with the version of node
32+
run: npx ls-engines
3233
- run: "npm run test:ci"
3334
test:
3435
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)