Skip to content

UI UX improvements

UI UX improvements #90

Workflow file for this run

name: CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: "24"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Type check
run: pnpm run typecheck
- name: Smoke test
run: pnpm run smoke-test
- name: Run tests
run: pnpm run test
- name: Lint (Biome)
run: pnpm run lint
- name: Check formatting (Biome)
run: pnpm run format:check