From 931051e33b7d296a0bb89065c0a281dfa675978e Mon Sep 17 00:00:00 2001 From: Andy Lee Date: Tue, 23 Dec 2025 09:18:05 +0000 Subject: [PATCH] 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. --- .github/workflows/build-reusable.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-reusable.yml b/.github/workflows/build-reusable.yml index 9f7dfee..73e2e1b 100644 --- a/.github/workflows/build-reusable.yml +++ b/.github/workflows/build-reusable.yml @@ -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]