fix(sync): gate collection rebuilds on the info fields the converter … #11
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@v7 | |
| - 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: Test | |
| run: bun test | |
| - name: Validate discovery and conversion (no Postman writes) | |
| run: bun run sync --dry-run |