From 1ddd2aa6777e92c5942c0a3356f032439f257bec Mon Sep 17 00:00:00 2001 From: Seth Falco Date: Sun, 26 Nov 2023 15:37:51 +0000 Subject: [PATCH] ci: run tests on windows --- .github/workflows/main.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c9b939fb8..70edef1c6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -38,8 +38,7 @@ jobs: - run: yarn install - run: yarn test-regression test: - name: Node.js ${{ matrix.node-version }} - runs-on: ubuntu-latest + name: ${{ matrix.os }} Node.js ${{ matrix.node-version }} strategy: fail-fast: false matrix: @@ -48,6 +47,10 @@ jobs: - 18 - 16 - 14 + os: + - ubuntu-latest + - windows-latest + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v3