Fix/public event detail publish app filter #18
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: Frontend CI | |
| on: | |
| pull_request: | |
| branches: [ 'main' ] | |
| paths: | |
| - "frontend/**" | |
| jobs: | |
| test: | |
| name: Biome & TypeScript | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| defaults: | |
| run: | |
| working-directory: ./frontend | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 3 | |
| lfs: true | |
| - name: Set up Bun | |
| uses: oven-sh/setup-bun@v2 | |
| - name: Install dependencies | |
| run: bun install --frozen-lockfile | |
| - name: Run TypeScript checks | |
| run: bunx tsc --noEmit | |
| - name: Run Biome check (zero warnings policy) | |
| run: bunx biome ci . --error-on-warnings |