Skip to content

Commit 2ce8847

Browse files
authored
Merge pull request #328 from netlify/chore/ci-node-latest
chore: run CI on latest Node.js
2 parents d4e464a + b192900 commit 2ce8847

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/test.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
strategy:
1313
matrix:
1414
os: [ubuntu-latest, macOS-latest, windows-latest]
15-
node-version: [10.13.0, 15.x]
15+
node-version: [10.13.0, '*']
1616
exclude:
1717
- os: macOS-latest
1818
node-version: 10.13.0
@@ -26,8 +26,9 @@ jobs:
2626
uses: actions/setup-node@v2
2727
with:
2828
node-version: ${{ matrix.node-version }}
29+
check-latest: '*'
2930
- run: npm ci
3031
- name: Linting
3132
run: npm run format:ci
32-
if: "${{ matrix.node-version == '15.x' }}"
33+
if: "${{ matrix.node-version == '*' }}"
3334
- run: npm test

0 commit comments

Comments
 (0)