From 65a189553f02ae0a4088b00e22d8b63eb57a137b Mon Sep 17 00:00:00 2001 From: Toru Nagashima Date: Mon, 28 Oct 2019 20:19:16 +0900 Subject: [PATCH] Build: update CI for Node.js 13 --- .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