From 79a5db809ba34c93c7d101000f01c7c0d6ef9dc4 Mon Sep 17 00:00:00 2001 From: Ulf Gebhardt Date: Tue, 13 Jun 2023 15:32:14 +0200 Subject: [PATCH] build backend for fullstack tests --- .github/workflows/test-e2e.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/test-e2e.yml b/.github/workflows/test-e2e.yml index d76ab129f..9d007c451 100644 --- a/.github/workflows/test-e2e.yml +++ b/.github/workflows/test-e2e.yml @@ -27,6 +27,10 @@ jobs: - name: cypress | Fullstack tests id: e2e-tests run: | + cd backend + yarn install + yarn build + cd .. yarn install yarn run cypress:run --spec $(cypress/parallel-features.sh ${{ matrix.job }} ${{ env.jobs }} )