Skip to content
This repository was archived by the owner on Oct 10, 2022. It is now read-only.

Commit 4eb81e9

Browse files
authored
chore(ci): move minimum tested node version to 10.18.0 (#465)
1 parent a8ba5e4 commit 4eb81e9

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

.github/workflows/workflow.yml

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,12 @@ jobs:
1313
strategy:
1414
matrix:
1515
os: [ubuntu-latest, macOS-latest, windows-latest]
16-
node-version: [8.17.0, '*']
16+
node-version: ['10.18.0', '*']
1717
exclude:
1818
- os: macOS-latest
19-
node-version: 8.17.0
19+
node-version: '10.18.0'
2020
- os: windows-latest
21-
node-version: 8.17.0
21+
node-version: '10.18.0'
2222
fail-fast: false
2323
steps:
2424
- name: Git checkout
@@ -29,8 +29,7 @@ jobs:
2929
node-version: ${{ matrix.node-version }}
3030
check-latest: true
3131
- name: Install dependencies
32-
# TODO: switch to `npm ci` after dropping support for Node 8
33-
run: npm install
32+
run: npm ci
3433
- name: Linting
3534
run: npm run format:ci
3635
if: "${{ matrix.node-version == '*' }}"

0 commit comments

Comments
 (0)