1
0
Fork 0

ci: Add Windows and macOS

pull/1/head
Ambrose Chua 2021-09-10 00:45:44 +08:00
parent a4faf69f29
commit 30c22cff9f
1 changed files with 5 additions and 1 deletions

View File

@ -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