Skip to content

Add initial lint/test workflow #1

Add initial lint/test workflow

Add initial lint/test workflow #1

Workflow file for this run

---
name: Default
on: push
jobs:
main:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node: ["18", "20", "22"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm ci
- run: npm run lint
- run: npm run test