From e89abde1c5e6f82c4deb772f1610496636eb1186 Mon Sep 17 00:00:00 2001 From: ehmicky Date: Sun, 18 Aug 2024 15:37:13 +0100 Subject: [PATCH] Run CI on Windows --- .github/workflows/main.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 6e98150..397379c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -4,15 +4,18 @@ on: - pull_request jobs: test: - name: Node.js ${{ matrix.node-version }} - runs-on: ubuntu-latest + name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }} + runs-on: ${{ matrix.os }}-latest strategy: fail-fast: false matrix: node-version: - 22 - - 20 - 18 + os: + - ubuntu + - macos + - windows steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4