From d93f5c693a0a23138b3d9c07667b5c6ddf34184d Mon Sep 17 00:00:00 2001 From: shimataro Date: Sat, 6 Jun 2020 15:37:44 +0900 Subject: [PATCH] Build on all supported platforms (#139) * Build on all supported platforms * rename job --- .github/workflows/build.yml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1b945ae..6cef32a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,14 +8,16 @@ on: jobs: build: - name: Build on ${{ matrix.os }} / Node.js v${{ matrix.nodejs }} + name: Build runs-on: ${{ matrix.os }} strategy: matrix: os: - - Windows-latest - - macOS-latest - - Ubuntu-latest + - Windows-2019 + - macOS-10.15 + - Ubuntu-16.04 + - Ubuntu-18.04 + - Ubuntu-20.04 nodejs: - 12 fail-fast: false