From 30c22cff9f97e7da0b0e6ad0e3d47cf1d8b822ae Mon Sep 17 00:00:00 2001 From: Ambrose Chua Date: Fri, 10 Sep 2021 00:45:44 +0800 Subject: [PATCH] ci: Add Windows and macOS --- .github/workflows/node.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/node.yml b/.github/workflows/node.yml index 1fa2ab1..f55151b 100644 --- a/.github/workflows/node.yml +++ b/.github/workflows/node.yml @@ -45,12 +45,16 @@ jobs: fi test: - runs-on: ubuntu-latest + runs-on: ${{ matrix.os }} strategy: matrix: + os: [ubuntu-latest, windows-latest, macOS-latest] node-version: [14.x, 16.x] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ + exclude: + - {os: windows-latest, node: 16.x} + - {os: macOS-latest, node: 16.x} steps: - uses: actions/checkout@v2