fix(pr): stop cancelled CI runs from masking the latest review status #848
Workflow file for this run
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: Type Check | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: oven-sh/setup-bun@v2 | |
| - run: bun install --frozen-lockfile | |
| - name: Backend type check | |
| run: bun run check | |
| working-directory: backend | |
| - name: Frontend type check | |
| run: bun run check | |
| working-directory: frontend | |
| - name: Build distribution | |
| run: bun run build |