diff --git a/.github/workflows/cicd.yml b/.github/workflows/cicd.yml index 0a4ed0eb7b..7e3b305972 100644 --- a/.github/workflows/cicd.yml +++ b/.github/workflows/cicd.yml @@ -91,6 +91,8 @@ jobs: name: Run frontend unit tests needs: version runs-on: ubuntu-22.04 + env: + PUPPETEER_SKIP_DOWNLOAD: "true" steps: - name: Checkout uses: actions/checkout@v4 @@ -205,6 +207,7 @@ jobs: ENV_PROFILE: ${{ needs.version.outputs.ENV_PROFILE }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MONITORFISH_VERSION: ${{ needs.version.outputs.VERSION }} + PUPPETEER_SKIP_DOWNLOAD: "true" VITE_CYPRESS_PORT: 8880 VERSION: ${{ needs.version.outputs.VERSION }} steps: @@ -262,6 +265,7 @@ jobs: ENV_PROFILE: ${{ needs.version.outputs.ENV_PROFILE }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} MONITORFISH_VERSION: ${{ needs.version.outputs.VERSION }} + PUPPETEER_SKIP_DOWNLOAD: "true" VITE_CYPRESS_PORT: 8880 VERSION: ${{ needs.version.outputs.VERSION }} steps: diff --git a/infra/docker/app/Dockerfile b/infra/docker/app/Dockerfile index 6473f6a57d..4f1fb5f69f 100644 --- a/infra/docker/app/Dockerfile +++ b/infra/docker/app/Dockerfile @@ -35,6 +35,7 @@ ARG VERSION ARG ENV_PROFILE ENV CI=true ENV ENV_PROFILE=$ENV_PROFILE +ENV PUPPETEER_SKIP_DOWNLOAD=true RUN echo ${ENV_PROFILE}