From e715ba53ccb9feb4cc80b78a389bc5639ee1422d Mon Sep 17 00:00:00 2001 From: Mohamed Boudra Date: Thu, 8 Jan 2026 18:26:37 +0700 Subject: [PATCH] ci: install only server workspace deps to avoid private package auth --- .github/workflows/server-ci.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/server-ci.yml b/.github/workflows/server-ci.yml index 218bc32ad..af9dc117b 100644 --- a/.github/workflows/server-ci.yml +++ b/.github/workflows/server-ci.yml @@ -27,13 +27,9 @@ jobs: with: node-version: '20' cache: 'npm' - registry-url: 'https://npm.pkg.github.com' - scope: '@boudra' - - name: Install dependencies - run: npm ci - env: - NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Install server dependencies + run: npm install --workspace=@paseo/server --include-workspace-root - name: Typecheck run: npm run typecheck --workspace=@paseo/server