updates/.github/workflows/ci.yaml

18 lines
377 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:
2024-05-08 15:26:46 +00:00
node: [18, 20, 22]
2024-05-23 21:53:45 +00:00
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{matrix.os}}
2020-03-08 09:43:25 +00:00
steps:
2024-03-11 00:44:41 +00:00
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
2020-03-08 09:43:25 +00:00
with:
2022-06-03 21:10:47 +00:00
node-version: ${{matrix.node}}
2023-08-26 10:24:24 +00:00
- run: make lint test