From ac24dd91a737f6df450ea28e9cdc153e3ef72fdf Mon Sep 17 00:00:00 2001 From: Laurent Bossavit Date: Tue, 10 Dec 2024 22:45:25 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B(dimail)=20ensure=20Dimail=20DB=20i?= =?UTF-8?q?s=20initialized=20prior=20to=20E2E=20testing?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add a command to the testing workflow to ensure Dimail DB is set up. --- .github/workflows/people.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/people.yml b/.github/workflows/people.yml index 7b63853..0502e8d 100644 --- a/.github/workflows/people.yml +++ b/.github/workflows/people.yml @@ -197,6 +197,10 @@ jobs: run: | make demo FLUSH_ARGS='--no-input' + - name: Setup Dimail DB + run: | + make dimail-setup-db + - name: Install Playwright Browsers run: cd src/frontend/apps/e2e && yarn install