1
0
forked from baron/baron-sso

fix(ci): fix Playwright module resolution by running pnpm install in the app directory

This commit is contained in:
2026-05-27 13:18:13 +09:00
parent dda1df9c48
commit 1808cf9f33

View File

@@ -201,7 +201,7 @@ set +e
if ! command -v pnpm >/dev/null 2>&1; then
run_with_retry 3 npm install -g pnpm
fi
run_with_retry 3 CI=true pnpm install -C ../common --no-frozen-lockfile --store-dir "$pnpm_store_dir"
run_with_retry 3 CI=true pnpm install --no-frozen-lockfile --store-dir "$pnpm_store_dir"
fi
) 2>&1 | tee reports/adminfront-install.log
install_exit_code=${PIPESTATUS[0]}