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
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ permissions:
contents: read

jobs:
build-and-test:
# Build is OS-independent (Vite + tsc), so a single Linux runner is enough.
# Pinned to Node 24 (current Active LTS), matching engines and the
build:
# Type-check, test, and build are OS-independent, so a single Linux runner is
# enough. Pinned to Node 24 (current Active LTS), matching engines and the
# CONTRIBUTING support claim.
strategy:
fail-fast: false
Expand All @@ -29,7 +29,7 @@ jobs:
- name: Install dependencies
run: npm ci
- name: Type-check
run: npx tsc --noEmit
run: npm run typecheck
- name: Test
run: npm test
- name: Build (multi-file + single-file)
Expand Down
Loading