Skip to content

Add configurable lint ignores #19

Add configurable lint ignores

Add configurable lint ignores #19

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
jobs:
test:
name: test (${{ matrix.os }}, Node ${{ matrix.node }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
node: [20, 22, 24]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node }}
cache: "npm"
- run: npm ci
- run: npm run build
- run: npm test
- run: npm pack --dry-run
audit:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version: "24"
cache: "npm"
- run: npm ci
- run: npm audit
dogfood:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: ./
with:
path: tests/fixtures/collection
format: text