From 60c94b4f00a9d9847051c9963f3a84c3a59ce38e Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Sun, 6 Jul 2025 18:02:31 -0700 Subject: [PATCH] Build dependencies before type checking --- .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 39e78574..9d2d65af 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -123,6 +123,11 @@ jobs: cache: "pnpm" - name: Install Dependencies run: pnpm install --frozen-lockfile + - name: Build Dependencies + run: | + # Build ani-cursor and winamp-eqf first so their types are available + pnpm --filter ani-cursor build + pnpm --filter winamp-eqf build - name: Lint run: | pnpm lint