Skip to content

[Feature] Update theme and design system to follow 'Frosted Sage' vis… #19

[Feature] Update theme and design system to follow 'Frosted Sage' vis…

[Feature] Update theme and design system to follow 'Frosted Sage' vis… #19

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6.0.2
- name: Install pnpm
uses: pnpm/action-setup@v4
with:
version: latest
- name: Setup Node.js
uses: actions/setup-node@v6.2.0
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Cloudflare typegen
run: pnpm run cf-typegen
- name: Type check
run: pnpm run type-check
- name: Lint
run: pnpm run lint
- name: Run tests with coverage
run: pnpm run test:coverage
- name: Upload coverage report
uses: actions/upload-artifact@v6.0.0
with:
name: coverage-report
path: coverage/
retention-days: 7