From 9fb87b9d86794fb09a20e4eb0057c25be67fcd5f Mon Sep 17 00:00:00 2001 From: Mohamed Boudra Date: Tue, 28 Apr 2026 18:05:27 +0700 Subject: [PATCH] ci(deploy-app): install all workspaces so server/relay sources resolve Typecheck pulls in @server/* sources via tsconfig path alias, but the prior `npm install --workspace=@getpaseo/app` skipped server/relay deps, leaving zod, @anthropic-ai/claude-agent-sdk, and @getpaseo/relay/e2ee unresolvable on CI. --- .github/workflows/deploy-app.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy-app.yml b/.github/workflows/deploy-app.yml index 7a180d5d7..d566f66ad 100644 --- a/.github/workflows/deploy-app.yml +++ b/.github/workflows/deploy-app.yml @@ -24,7 +24,7 @@ jobs: scope: "@boudra" - name: Install dependencies - run: npm install --workspace=@getpaseo/app --include-workspace-root + run: npm ci env: NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}