From 9a7522f844c7dc4e6acea6c3538c8931639953de Mon Sep 17 00:00:00 2001 From: Joren Broekema Date: Mon, 7 Dec 2020 16:20:58 +0100 Subject: [PATCH] chore: update verify workflow to run node tests on windows --- .github/workflows/verify.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/verify.yml b/.github/workflows/verify.yml index 59b9ab57e..ca66be255 100644 --- a/.github/workflows/verify.yml +++ b/.github/workflows/verify.yml @@ -68,10 +68,11 @@ jobs: node-tests: name: Node tests - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: node-version: [12.x, 14.x] + os: [ubuntu-latest, windows-latest] steps: - uses: actions/checkout@v2