diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0e7d5181ce8..dd533de3ef3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,16 +26,24 @@ jobs: strategy: matrix: os: [ubuntu-latest, windows-latest, macOS-latest] - node: [8.x, 10.x, 12.x] + node: [13.x, 12.x, 10.x, 8.x, "8.10.0"] exclude: + - os: windows-latest + node: "8.10.0" - os: windows-latest node: 8.x - os: windows-latest node: 10.x + - os: windows-latest + node: 13.x + - os: macOS-latest + node: "8.10.0" - os: macOS-latest node: 8.x - os: macOS-latest node: 10.x + - os: macOS-latest + node: 13.x runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v1