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
20 changes: 20 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,16 @@ jobs:
- uses: dtolnay/rust-toolchain@stable
with:
components: clippy
# The binary embeds frontend/dist/ at compile time (rust-embed), so the
# client must be built before any cargo compile step.
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: frontend/package-lock.json
- name: Build embedded frontend
run: npm ci && npm run build
working-directory: frontend
- uses: Swatinem/rust-cache@v2
- run: cargo clippy --all-targets --locked -- -D warnings

Expand Down Expand Up @@ -55,6 +65,16 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
# The binary embeds frontend/dist/ at compile time (rust-embed), so the
# client must be built before any cargo compile step.
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: frontend/package-lock.json
- name: Build embedded frontend
run: npm ci && npm run build
working-directory: frontend
- uses: Swatinem/rust-cache@v2
- run: cargo test --locked

Expand Down
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,10 @@ target
.env

# Personal notes, not for commit
NOTES.txt
NOTES.*

# Local dev infrastructure, not for commit
docker-compose.yml

# Claude Code skills (local, not for commit)
.claude/skills/
Loading
Loading