fix: enforce RFC-safe parsing across modes and targets #383
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: Lint | |
| on: [push, pull_request] | |
| jobs: | |
| # Type checking and linting | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@v6 | |
| - name: Setup Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Install Dependencies | |
| run: bun install | |
| - name: TypeScript Type Check | |
| run: bun run typecheck | |
| continue-on-error: true | |
| - name: Lint | |
| run: bun run lint | |
| continue-on-error: true |