Skip to content

Commit 4e05a79

Browse files
Fixing GitHub Actions deprecations and warnings
1 parent ef6d1e8 commit 4e05a79

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,14 @@ jobs:
1010
test:
1111
strategy:
1212
matrix:
13-
platform: [ ubuntu-latest, macos-latest, windows-latest ]
13+
os: [ ubuntu-latest, macos-latest, windows-latest ]
1414
node-version: [ 10.x, 12.x, 13.x ]
15-
runs-on: ${{ matrix.platform }}
15+
runs-on: ${{ matrix.os }}
1616
steps:
1717
- uses: actions/checkout@v1
1818
- uses: actions/setup-node@v1
1919
with:
20-
version: ${{ matrix.node-version }}
20+
node-version: ${{ matrix.node-version }}
2121
- run: npm ci
2222
- run: ./node_modules/.bin/nyc --reporter=lcovonly npm test
2323
- uses: codecov/codecov-action@v1

0 commit comments

Comments
 (0)