From 57b2812c63ba384457aeb67f2f615fc218fc6b5c Mon Sep 17 00:00:00 2001 From: Carlos Santos <4a.santos@gmail.com> Date: Wed, 14 May 2025 10:35:36 +0200 Subject: [PATCH] ci: update Playwright browser installation path to use temporary directory --- .github/workflows/wc-e2e-test.yaml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/wc-e2e-test.yaml b/.github/workflows/wc-e2e-test.yaml index 9567614..9d6f27a 100644 --- a/.github/workflows/wc-e2e-test.yaml +++ b/.github/workflows/wc-e2e-test.yaml @@ -34,9 +34,10 @@ jobs: - name: Install Playwright browsers run: | cd frontend/webcomponent - PLAYWRIGHT_BROWSERS_PATH=$HOME/ms-playwright npx playwright install --with-deps chromium + mkdir -p /tmp/ms-playwright + PLAYWRIGHT_BROWSERS_PATH=/tmp/ms-playwright npx playwright install --with-deps chromium env: - PLAYWRIGHT_BROWSERS_PATH: $HOME/ms-playwright + PLAYWRIGHT_BROWSERS_PATH: /tmp/ms-playwright - name: Setup OpenVidu Meet shell: bash @@ -62,7 +63,7 @@ jobs: npm run test:e2e env: RUN_MODE: CI - PLAYWRIGHT_BROWSERS_PATH: $HOME/ms-playwright + PLAYWRIGHT_BROWSERS_PATH: /tmp/ms-playwright - name: Clean up if: always() uses: ./.github/actions/cleanup