Skip to content

feat: add build check to CI (tsc + vite build) #4

feat: add build check to CI (tsc + vite build)

feat: add build check to CI (tsc + vite build) #4

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
- uses: actions/setup-node@v4
with:
node-version: 22
cache: pnpm
- run: pnpm install --frozen-lockfile
- name: Lint (Biome + Architecture)
run: pnpm lint
- name: Type check
run: pnpm tsc --noEmit
- name: Build
run: pnpm build
- name: Test
run: pnpm test
- name: Check doc freshness
run: pnpm check:docs