diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f1da88295bf..2674b575c05 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -25,21 +25,13 @@ jobs: name: Test strategy: matrix: - os: [ubuntu-latest, windows-latest, macOS-latest] - node: [13.x, 12.x, 10.x, "10.12.0"] - exclude: + os: [ubuntu-latest] + node: [14.x, 13.x, 12.x, 10.x, "10.12.0"] + include: - os: windows-latest - node: "10.12.0" - - os: windows-latest - node: 10.x - - os: windows-latest - node: 13.x - - os: macOS-latest - node: "10.12.0" - - os: macOS-latest - node: 10.x + node: "12.x" - os: macOS-latest - node: 13.x + node: "12.x" runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2