Skip to content

docs(readme): add matchedAuthMarker dogfood example #8

docs(readme): add matchedAuthMarker dogfood example

docs(readme): add matchedAuthMarker dogfood example #8

Workflow file for this run

name: ci
on:
push:
branches: [main]
pull_request:
branches: [main]
permissions:
contents: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: ["18", "20", "22"]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
cache: npm
- run: npm ci
- run: npm run lint
- run: npm test
- name: Self-scan
run: node apigate.js . --output-dir /tmp/apigate-self || true
# Self-scan is informational on the public repo; we don't enforce
# gate FAIL on our own repo's surface in CI yet.