Skip to content
Merged
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
18 changes: 18 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
- name: Install docs dependencies
run: npm --prefix docs ci

- name: Format check
run: npm run format:check

- name: Typecheck
run: npm run typecheck

Expand All @@ -50,6 +53,21 @@ jobs:
- name: Build docs
run: npm run docs:build

- name: Setup Rust (for smoke:backend)
uses: dtolnay/rust-toolchain@stable

- name: Cache Cargo (backend)
uses: actions/cache@v4
with:
path: |
~/.cargo/registry
~/.cargo/git
backend/target
key: ${{ runner.os }}-cargo-backend-${{ hashFiles('backend/Cargo.lock') }}

- name: Backend smoke test
run: npm run smoke:backend

rust:
name: Rust check
runs-on: ubuntu-latest
Expand Down
Loading