Skip to content

Commit 2ef14dd

Browse files
committed
Run test workflow on Windows
1 parent 67924d1 commit 2ef14dd

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/npm-test.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,13 @@ name: NPM Test
44
on: ["pull_request"]
55
jobs:
66
npm_test:
7+
strategy:
8+
matrix:
9+
os: ["ubuntu-20.04", "windows-latest"]
710
if: "!contains(github.event.head_commit.message, 'skip ci')"
811
name: Run NPM Test
9-
runs-on: ubuntu-latest
1012
timeout-minutes: 30
13+
runs-on: ${{ matrix.os }}
1114
steps:
1215
- name: Checkout
1316
uses: actions/checkout@v1

0 commit comments

Comments
 (0)