updates/.github/workflows/ci.yaml

19 lines
372 B
YAML
Raw Normal View History

2020-03-08 09:43:25 +00:00
name: ci
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
2023-04-18 18:19:24 +00:00
node: [16, 18, 20]
2023-08-25 23:21:35 +00:00
os: [ubuntu-latest, macos-latest, windows-latest]
2020-03-08 09:43:25 +00:00
2022-07-21 03:25:54 +00:00
runs-on: ubuntu-latest
2020-03-08 09:43:25 +00:00
steps:
2022-06-03 21:10:47 +00:00
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
2020-03-08 09:43:25 +00:00
with:
2022-06-03 21:10:47 +00:00
node-version: ${{matrix.node}}
2020-08-20 20:14:43 +00:00
- run: make test