updates/.github/workflows/ci.yaml
silverwind d602afb2cd
Revert "always use the built-in fetch - fixes #70"
This reverts commit 0ab1b07b960d03d97beff751220b4ac0f9575faa.
2024-03-09 05:50:57 +01:00

19 lines
373 B
YAML

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