We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d4e464a + b192900 commit 2ce8847Copy full SHA for 2ce8847
.github/workflows/test.yml
@@ -12,7 +12,7 @@ jobs:
12
strategy:
13
matrix:
14
os: [ubuntu-latest, macOS-latest, windows-latest]
15
- node-version: [10.13.0, 15.x]
+ node-version: [10.13.0, '*']
16
exclude:
17
- os: macOS-latest
18
node-version: 10.13.0
@@ -26,8 +26,9 @@ jobs:
26
uses: actions/setup-node@v2
27
with:
28
node-version: ${{ matrix.node-version }}
29
+ check-latest: '*'
30
- run: npm ci
31
- name: Linting
32
run: npm run format:ci
- if: "${{ matrix.node-version == '15.x' }}"
33
+ if: "${{ matrix.node-version == '*' }}"
34
- run: npm test
0 commit comments