From 9adc202be8e2a70b62389989157a9cfcff701de4 Mon Sep 17 00:00:00 2001 From: Chris Manson Date: Wed, 22 May 2024 16:44:56 +0100 Subject: [PATCH] add windows tests --- .github/workflows/ci.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 74270a5..058d39d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,12 +12,15 @@ on: jobs: tests: - name: "Tests on Node.js ${{ matrix.node-version }}" - runs-on: ubuntu-latest + name: "Tests on Node.js ${{ matrix.node-version }} - ${{ matrix.os }}" + runs-on: ${{ matrix.os }} strategy: matrix: node-version: ["16", "18", "20"] + os: + - 'ubuntu-latest' + - 'windows-latest' steps: - uses: actions/checkout@v3