Skip to content

Commit 5916d2f

Browse files
authored
Merge pull request #32 from netlify/chore/windows
Run tests on Windows
2 parents 4bbe0ad + eda07b0 commit 5916d2f

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,18 @@ on:
77

88
jobs:
99
build:
10-
runs-on: ubuntu-latest
10+
runs-on: ${{ matrix.os }}
1111

1212
strategy:
1313
matrix:
14-
node-version: [10.x, 12.x, 14.x]
14+
os: [ubuntu-latest, macOS-latest, windows-latest]
15+
node-version: [10.x, 14.x]
16+
exclude:
17+
- os: macOS-latest
18+
node-version: 10.x
19+
- os: windows-latest
20+
node-version: 10.x
21+
fail-fast: false
1522

1623
steps:
1724
- uses: actions/checkout@v2

0 commit comments

Comments
 (0)