Skip to content

Commit

Permalink
Also run tests on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
gschier committed May 28, 2020
1 parent 4d02e6a commit 3ffb98c
Showing 1 changed file with 16 additions and 3 deletions.
19 changes: 16 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ env:
NPM_CONFIG_RUNTIME: electron

jobs:
Test:
name: Test
Windows:
name: Test Windows
runs-on: macOS-latest
steps:
- name: Checkout branch
Expand All @@ -24,4 +24,17 @@ jobs:
run: npm run bootstrap
- name: Run tests
run: npm test

Linux:
name: Test Linux
runs-on: ubuntu-latest
steps:
- name: Checkout branch
uses: actions/checkout@v1
- name: Install NodeJS
uses: actions/setup-node@v1
with:
node-version: 10
- name: Bootstrap packages
run: npm run bootstrap
- name: Run tests
run: npm test

0 comments on commit 3ffb98c

Please sign in to comment.