We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
unifiedjs
Learn more about funding links in repositories.
Report abuse
1 parent 447bcc9 commit 57d0aeeCopy full SHA for 57d0aee
.github/workflows/main.yml
@@ -4,8 +4,8 @@ on:
4
- push
5
jobs:
6
main:
7
- name: '${{matrix.node}} on ${{matrix.os}}'
8
- runs-on: ${{matrix.os}}
+ name: ${{matrix.node}}
+ runs-on: ubuntu-latest
9
steps:
10
- uses: actions/checkout@v2
11
- uses: dcodeIO/setup-node-nvm@master
@@ -16,9 +16,21 @@ jobs:
16
- uses: codecov/codecov-action@v1
17
strategy:
18
matrix:
19
- os:
20
- - ubuntu-latest
21
- - windows-latest
+ node:
+ - lts/dubnium
+ - node
22
+ windows:
23
24
+ runs-on: windows-latest
25
+ steps:
26
+ - uses: actions/checkout@v2
27
+ - uses: dcodeIO/setup-node-nvm@master
28
+ with:
29
+ node-version: ${{matrix.node}}
30
+ - run: npm install
31
+ - run: npm run test-api
32
+ strategy:
33
+ matrix:
34
node:
35
- lts/dubnium
36
- node
0 commit comments