From 6d5b36181be1cbfab5071ee0188640c91d26c907 Mon Sep 17 00:00:00 2001 From: James Murdza Date: Wed, 22 Oct 2025 12:01:08 -0700 Subject: [PATCH] Install dependencies in TypeScript workspace in CI --- .github/workflows/lint.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 7f2eabcb..c1d9ca2a 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -38,7 +38,9 @@ jobs: uv sync - name: Install Node dependencies - run: pnpm install --frozen-lockfile + run: | + pnpm install --frozen-lockfile + pnpm -C libs/typescript install --frozen-lockfile # Python checks (isort, black, ruff, mypy) - name: Python lint & typecheck