feat(apigate): v0.3.0 — bidirectional nest parser + expanded defaults… #12
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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. |