Skip to content
Open
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 @@ -572,6 +572,26 @@ jobs:
- name: Run syntax tests on source files
run: .github/scripts/test.sh source-syntax

typecheck:
needs: install-and-cibuild
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: ./.github/actions/setup-workspace

- name: Type-check TypeScript sources
run: npm run typecheck

generated-types-drift:
needs: install-and-cibuild
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: ./.github/actions/setup-workspace

- name: Verify generated types are in sync with attribute sources
run: npm run gen:types:check

# ============================================================
# Standalone jobs (no dependencies on install-and-cibuild)
# ============================================================
Expand Down
Loading
Loading