From d00515fbf8658d60267ce3f66845ccef3f9d67fd Mon Sep 17 00:00:00 2001 From: Jason Cheatham Date: Fri, 26 Nov 2021 10:13:46 -0500 Subject: [PATCH] Run CI tests on multiple platforms --- .github/workflows/ci.yml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bb199d6ab..1afabff5e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,17 +8,16 @@ on: jobs: build: - runs-on: ubuntu-latest - strategy: matrix: + os: [macos-latest, windows-latest, ubuntu-latest] + node: [12, 14, 16] include: - node-version: 16 + os: ubuntu-latest full-ci: true - - node-version: 14 - full-ci: false - - node-version: 12 - full-ci: false + + runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v2