We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67924d1 commit 2ef14ddCopy full SHA for 2ef14dd
1 file changed
.github/workflows/npm-test.yml
@@ -4,10 +4,13 @@ name: NPM Test
4
on: ["pull_request"]
5
jobs:
6
npm_test:
7
+ strategy:
8
+ matrix:
9
+ os: ["ubuntu-20.04", "windows-latest"]
10
if: "!contains(github.event.head_commit.message, 'skip ci')"
11
name: Run NPM Test
- runs-on: ubuntu-latest
12
timeout-minutes: 30
13
+ runs-on: ${{ matrix.os }}
14
steps:
15
- name: Checkout
16
uses: actions/checkout@v1
0 commit comments