docs: make README user-facing and AGENTS consumer-facing, move mainta… #4
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: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| permissions: | |
| contents: read | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: oven-sh/setup-bun@v2 | |
| - run: bun install --frozen-lockfile | |
| - name: Lint and format | |
| run: bunx biome ci . | |
| - name: Typecheck | |
| run: bun typecheck | |
| - name: Validate discovery and conversion (no Postman writes) | |
| run: bun run sync --dry-run |