diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 2a8a4742675b..29d50f6d0a16 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -14,13 +14,16 @@ permissions: jobs: build: - - runs-on: ubuntu-latest - strategy: fail-fast: false matrix: node-version: [14.x, 16.x] + os: [windows-latest, ubuntu-latest] + exclude: + - os: windows-latest + node-version: 16.x + + runs-on: ${{ matrix.os }} steps: - name: Checkout