From c2199fdc08328dbd119a797871117991fdc77d4f Mon Sep 17 00:00:00 2001 From: lucasdevelop Date: Sun, 8 Aug 2021 19:11:01 +0200 Subject: [PATCH] change github workflow --- .github/workflows/node.js.yml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 0a9660f..56aa2a7 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -10,14 +10,19 @@ on: branches: [ main ] jobs: - build: - - runs-on: ubuntu-latest - + test: strategy: matrix: - node-version: [10.x, 12.x, 14.x, 15.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + os: + - ubuntu-latest + - macos-latest + - windows-latest + node: + - '10' + - '12' + - '14' + - '16' + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2