1
0
forked from baron/baron-sso

fix(frontend): run pnpm install with CI=true to prevent TTY prompt errors during runtime setup

This commit is contained in:
2026-05-15 11:14:22 +09:00
parent 8951de510e
commit dcab9205d2
6 changed files with 6 additions and 6 deletions

View File

@@ -61,7 +61,7 @@ ensure_frontend_dependencies() {
echo "Installing frontend dependencies..."
if [ "$WORKSPACE_DIR" = "/common" ]; then
npm install -g pnpm
(cd /common && pnpm install)
(cd /common && CI=true pnpm install)
else
npm ci
fi