From 5e0b041d0a481db5c67c286c6e2d3054aa425c6c Mon Sep 17 00:00:00 2001 From: kyy Date: Tue, 28 Apr 2026 15:22:30 +0900 Subject: [PATCH] =?UTF-8?q?=EB=9F=AC=EB=84=88=20=ED=8C=A8=ED=82=A4?= =?UTF-8?q?=EC=A7=80=20=EC=84=A4=EC=B9=98=20=EC=98=A4=EB=A5=98=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/run_adminfront_ci_tests.sh | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/scripts/run_adminfront_ci_tests.sh b/scripts/run_adminfront_ci_tests.sh index 8d0c8ed7..2237686d 100755 --- a/scripts/run_adminfront_ci_tests.sh +++ b/scripts/run_adminfront_ci_tests.sh @@ -6,18 +6,8 @@ job_name="${1:-adminfront-tests}" mkdir -p reports rm -rf adminfront/node_modules -PLAYWRIGHT_BROWSERS_PATH="${HOME}/.cache/ms-playwright" -PLAYWRIGHT_CHROMIUM_COMPLETE="${PLAYWRIGHT_BROWSERS_PATH}/chromium-1208/INSTALLATION_COMPLETE" -PLAYWRIGHT_FIREFOX_COMPLETE="${PLAYWRIGHT_BROWSERS_PATH}/firefox-1509/INSTALLATION_COMPLETE" -PLAYWRIGHT_WEBKIT_COMPLETE="${PLAYWRIGHT_BROWSERS_PATH}/webkit-2248/INSTALLATION_COMPLETE" - -if [ -f "$PLAYWRIGHT_CHROMIUM_COMPLETE" ] && [ -f "$PLAYWRIGHT_FIREFOX_COMPLETE" ] && [ -f "$PLAYWRIGHT_WEBKIT_COMPLETE" ]; then - playwright_install_cmd=(sh -c 'echo "Playwright browsers already installed"') - playwright_install_desc="Playwright browsers already installed" -else - playwright_install_cmd=(npx playwright install) - playwright_install_desc="npx playwright install" -fi +playwright_install_cmd=(npx playwright install --with-deps) +playwright_install_desc="npx playwright install --with-deps" set +e (