From 4ee04723b2e5a63ddc5533c9838b8016ac3709fb Mon Sep 17 00:00:00 2001 From: Romain Date: Sat, 20 Feb 2021 17:32:25 +0100 Subject: [PATCH] Add Github workflow to run tests on Windows Manual trigger for now until the tests pass --- .github/workflows/test-windows.yml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .github/workflows/test-windows.yml diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml new file mode 100644 index 0000000..f8af768 --- /dev/null +++ b/.github/workflows/test-windows.yml @@ -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