Skip to content

Commit

Permalink
add windows to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Kelly Selden committed Dec 24, 2019
1 parent 01fe5f5 commit a6f4fb7
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,12 @@ jobs:
- run: npm run lint

test:
timeout-minutes: 10

strategy:
matrix:
os:
- ubuntu-latest
- macos-latest
- windows-latest
node:
- 8
- '*'
Expand All @@ -41,6 +40,11 @@ jobs:
- os: macos-latest
node: 8
test-command: test:fast
- os: windows-latest
node: '*'
- os: windows-latest
node: 8
test-command: test:fast

runs-on: ${{ matrix.os }}

Expand All @@ -55,5 +59,6 @@ jobs:

- run: npm ci
- run: npm run ${{ matrix.test-command }}
timeout-minutes: 15
env:
NODE_LTS: ${{ matrix.node == 8 }}

0 comments on commit a6f4fb7

Please sign in to comment.