diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index 1fa2ab1..f55151b 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -45,12 +45,16 @@ jobs: fi test: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: + os: [ubuntu-latest, windows-latest, macOS-latest] node-version: [14.x, 16.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + exclude: + - {os: windows-latest, node: 16.x} + - {os: macOS-latest, node: 16.x} steps: - uses: actions/checkout@v2