updates/.github/workflows/ci.yaml
2023-04-18 20:19:24 +02:00

18 lines
314 B
YAML

name: ci
on: [push, pull_request]
jobs:
test:
strategy:
fail-fast: false
matrix:
node: [16, 18, 20]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{matrix.node}}
- run: make test