From 1808cf9f337ac57f679a7cbd49ea1716b1c0d0cd Mon Sep 17 00:00:00 2001 From: chan Date: Wed, 27 May 2026 13:18:13 +0900 Subject: [PATCH] fix(ci): fix Playwright module resolution by running pnpm install in the app directory --- scripts/run_adminfront_ci_tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/run_adminfront_ci_tests.sh b/scripts/run_adminfront_ci_tests.sh index b72f91a0..ff76622d 100755 --- a/scripts/run_adminfront_ci_tests.sh +++ b/scripts/run_adminfront_ci_tests.sh @@ -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]}