Enable ty check for multimodal scripts in CI

All type errors in multimodal scripts have been fixed, so we can now
include them in the CI type checking.
This commit is contained in:
Andy Lee
2025-12-23 09:18:05 +00:00
parent 8aa4c7e5f2
commit 931051e33b

View File

@@ -47,8 +47,8 @@ jobs:
- name: Run ty type checker
run: |
# Run ty on core packages and apps, excluding multimodal and tests
ty check --exclude "apps/multimodal/**" --exclude "tests/**" packages/leann-core/src apps
# Run ty on core packages and apps, excluding tests
ty check --exclude "tests/**" packages/leann-core/src apps
build:
needs: [lint, type-check]