From 287ca562811d037bde09a47af7f5b9c7b741e022 Mon Sep 17 00:00:00 2001 From: Toru Nagashima Date: Tue, 29 Oct 2019 09:37:13 +0900 Subject: [PATCH] Build: update CI for Node.js 13 (#12496) --- .github/workflows/ci.yml | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) 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