ci: Use matrix for cross-OS testing

This commit is contained in:
Nick Schonning 2024-03-11 17:49:17 -04:00
parent 2b0095f270
commit 846f5c686b
No known key found for this signature in database
GPG Key ID: 5DDAAD9C9AAFFD9F

View File

@ -8,10 +8,14 @@ on:
jobs:
test:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
- windows-latest
- macos-latest
node-version:
- 18
- 20