From ea90f171549b9838d598cdf1f74568cd3b966f28 Mon Sep 17 00:00:00 2001 From: kovacsv Date: Fri, 25 Jun 2021 07:00:57 +0200 Subject: [PATCH] Fix multiple platforms. --- .github/workflows/build.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2e26e29..2132d6f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -9,11 +9,12 @@ on: jobs: build: - runs-on: [ windows-latest, macos-latest, ubuntu-latest ] + runs-on: ${{ matrix.os-type }} strategy: matrix: node-version: [12.x, 14.x, 16.x] + os-type: [windows-latest, macos-latest, ubuntu-latest] steps: - uses: actions/checkout@v2