Install dependencies in TypeScript workspace in CI

This commit is contained in:
James Murdza
2025-10-22 12:01:08 -07:00
parent e3c5c92915
commit 6d5b36181b

View File

@@ -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