Skip to content

Commit 0425028

Browse files
authored
Merge pull request #2 from PolicyEngine/demo-site
Add demo site showcasing all components
2 parents cc8f10f + 7b09657 commit 0425028

25 files changed

+1019
-10
lines changed

.github/workflows/pr.yaml

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
name: PR checks
2+
3+
on:
4+
pull_request:
5+
6+
jobs:
7+
changelog:
8+
name: Changelog fragment
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Check out repository
13+
uses: actions/checkout@v4
14+
with:
15+
fetch-depth: 0
16+
17+
- name: Set up Python
18+
uses: actions/setup-python@v5
19+
with:
20+
python-version: "3.13"
21+
22+
- name: Install towncrier
23+
run: pip install towncrier
24+
25+
- name: Check for changelog fragment
26+
run: towncrier check --compare-with origin/main
27+
28+
test:
29+
name: Tests
30+
runs-on: ubuntu-latest
31+
32+
steps:
33+
- name: Check out repository
34+
uses: actions/checkout@v4
35+
36+
- name: Set up Bun
37+
uses: oven-sh/setup-bun@v2
38+
39+
- name: Install dependencies
40+
run: bun install --frozen-lockfile
41+
42+
- name: Run tests
43+
run: bun run test

changelog.d/.gitkeep

Whitespace-only changes.

changelog.d/demo-site.added.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Add demo site showcasing all components with light/dark Header variants and logo gallery.

0 commit comments

Comments
 (0)