Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
name: PR

on:
pull_request:
branches: [main]
push:
branches: [main]

jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- run: bun run build

test:
name: Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- run: bun run test

lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
- run: bun install --frozen-lockfile
- run: bun run lint
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,5 @@ out/
.vercel
.env.local
.gitnexus
tsconfig.tsbuildinfo
*.tsbuildinfo
4 changes: 2 additions & 2 deletions CLAUDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ Monorepo for all PolicyEngine presentation decks.

## Stack

- **Next.js 14** + TypeScript + Tailwind CSS
- **Design tokens** from `@policyengine/ui-kit`
- **Next.js 16** + React 19 + TypeScript + Tailwind CSS v4
- **Design tokens** from `@policyengine/ui-kit` (`@import "@policyengine/ui-kit/theme.css"` in `app/globals.css`). Slide markup uses legacy `pe-*` Tailwind classes (e.g. `bg-pe-teal`, `text-pe-500`); these alias to the ui-kit teal scale via the `@theme {}` block in `globals.css`.
- **Fonts**: Inter (everything), JetBrains Mono (code) — matches design system
- **Icons**: `@tabler/icons-react` (never emoji)

Expand Down
Loading
Loading