From 6b7030b1a1e1e3d1a3953cfa9722074d6a6fc1a9 Mon Sep 17 00:00:00 2001 From: fisker Cheung Date: Fri, 24 Apr 2020 06:40:30 +0800 Subject: [PATCH] Chore: Run tests on Node.js v14 (#13210) * Chore: Run tests on Node.js v14 * Run tests on v12 * Add 13.x back, exclude 14.x on windows/mac * Simplify matrix --- .github/workflows/ci.yml | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) 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