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.
1 parent ef6d1e8 commit 4e05a79Copy full SHA for 4e05a79
1 file changed
.github/workflows/ci.yml
@@ -10,14 +10,14 @@ jobs:
10
test:
11
strategy:
12
matrix:
13
- platform: [ ubuntu-latest, macos-latest, windows-latest ]
+ os: [ ubuntu-latest, macos-latest, windows-latest ]
14
node-version: [ 10.x, 12.x, 13.x ]
15
- runs-on: ${{ matrix.platform }}
+ runs-on: ${{ matrix.os }}
16
steps:
17
- uses: actions/checkout@v1
18
- uses: actions/setup-node@v1
19
with:
20
- version: ${{ matrix.node-version }}
+ node-version: ${{ matrix.node-version }}
21
- run: npm ci
22
- run: ./node_modules/.bin/nyc --reporter=lcovonly npm test
23
- uses: codecov/codecov-action@v1
0 commit comments