Skip to content

feat(apigate): v0.3.0 — bidirectional nest parser + expanded defaults… #12

feat(apigate): v0.3.0 — bidirectional nest parser + expanded defaults…

feat(apigate): v0.3.0 — bidirectional nest parser + expanded defaults… #12

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.