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