Add Github workflow to run tests on Windows

Manual trigger for now until the tests pass
pull/231/head
Romain 3 years ago committed by GitHub
parent 9caed85fe4
commit 4ee04723b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -0,0 +1,17 @@
name: Test on Windows
on:
workflow_dispatch:
jobs:
test:
name: Test on Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '12'
- run: npm install
- run: npm test
Loading…
Cancel
Save