Skip to content

perf(ui): add loading boundaries so navigations show a skeleton and prefetch works #281

perf(ui): add loading boundaries so navigations show a skeleton and prefetch works

perf(ui): add loading boundaries so navigations show a skeleton and prefetch works #281

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v7
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v7
with:
node-version: 22
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Generate Prisma client
run: pnpm --filter web exec prisma generate
- name: Lint
run: pnpm --filter web lint
- name: Typecheck
run: pnpm --filter web typecheck
- name: Test
run: pnpm --filter web test
- name: Build
run: pnpm --filter web build