Skip to content

fix(pr): stop cancelled CI runs from masking the latest review status… #849

fix(pr): stop cancelled CI runs from masking the latest review status…

fix(pr): stop cancelled CI runs from masking the latest review status… #849

Workflow file for this run

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