From 7d9032b6ecd7a5666017c1da3faf588a5cd69868 Mon Sep 17 00:00:00 2001 From: Anthony LC Date: Fri, 22 Mar 2024 17:12:58 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A(app-desk)=20build=20template=20mai?= =?UTF-8?q?l=20for=20e2e?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The tests e2e were failing because the mail template was not built. We will use the job after the mail templates are build. --- .github/workflows/people.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/people.yml b/.github/workflows/people.yml index 5182206..6fbf244 100644 --- a/.github/workflows/people.yml +++ b/.github/workflows/people.yml @@ -104,6 +104,7 @@ jobs: test-e2e: runs-on: ubuntu-latest + needs: build-mails timeout-minutes: 10 steps: - name: Checkout repository @@ -114,6 +115,12 @@ jobs: make create-env-files cat env.d/development/common.e2e.dist >> env.d/development/common + - name: Download mails' templates + uses: actions/download-artifact@v4 + with: + name: mails-templates + path: src/backend/core/templates/mail + - name: Build and Start Docker Servers env: DOCKER_BUILDKIT: 1