Skip to content

docs: fix incorrect import latency description #158

docs: fix incorrect import latency description

docs: fix incorrect import latency description #158

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
ci:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version: "24"
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Check formatting
run: pnpm run format:check
- name: Type check
run: pnpm run typecheck
- name: Run tests
run: pnpm run test:run
- name: Build
run: pnpm run build
- name: Cache Playwright browsers
id: playwright-cache
uses: actions/cache@v5
with:
path: ~/.cache/ms-playwright
key: playwright-${{ runner.os }}-${{ hashFiles('pnpm-lock.yaml') }}
- name: Install Playwright system dependencies
if: steps.playwright-cache.outputs.cache-hit != 'true'
run: pnpm --filter @funstack/static exec playwright install-deps chromium
- name: Install Playwright browsers
run: pnpm --filter @funstack/static exec playwright install chromium
- name: Run e2e tests
run: pnpm run test:e2e
- name: Upload Playwright report
uses: actions/upload-artifact@v6
if: ${{ !cancelled() }}
with:
name: playwright-report
path: packages/static/playwright-report/
retention-days: 30