Skip to content

Better accordion carets #1533

Better accordion carets

Better accordion carets #1533

Workflow file for this run

name: CI Checks
on: push
jobs:
ci-checks:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
persist-credentials: false
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
- name: Install pnpm 📦
uses: pnpm/action-setup@v4
# use version from package.json#packageManager field
- name: Install Dependencies 📥
run: |
pnpm install
- name: Lint, Fmt, and Type Check 🧹
run: | # Run the lint, fmt and type check scripts; typecheck will run build as well
pnpm run typecheck
pnpm run lint
pnpm run fmt:check
- name: Test 🧪
run: | # Run the tests
pnpm run test
- name: Diff Docs Routes Codegen 🕵️
run: | # Diff the docs routes codegen
pnpm --filter www run gen:docs-routes
git diff --exit-code