Members tab subpaths + homepage search fixes #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: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| checks: | |
| name: Lint & typecheck | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| with: | |
| # Keep in step with the version developers run locally so | |
| # --frozen-lockfile behaves identically in CI. | |
| bun-version: 1.3.1 | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Biome | |
| run: bunx biome ci . | |
| - name: Typecheck | |
| working-directory: apps/cursor | |
| run: bun run typecheck |