From 4bb64dc69648d9ac720deb934fd09e5044233a57 Mon Sep 17 00:00:00 2001 From: Nassim Tabchiche Date: Wed, 2 Oct 2024 17:33:44 +0200 Subject: [PATCH] WIP --- .github/workflows/functional-tests.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/functional-tests.yml b/.github/workflows/functional-tests.yml index 7f978aaa5..4ba91a130 100644 --- a/.github/workflows/functional-tests.yml +++ b/.github/workflows/functional-tests.yml @@ -158,9 +158,9 @@ jobs: - name: Install enterprise backend working-directory: ${{ env.enterprise-backend-directory }} run: poetry install - - name: Install frontend dependencies + - name: Build enterprise frontend working-directory: ${{ env.enterprise-frontend-directory }} - run: make pre-build + run: make - name: Install Playwright browser ${{ matrix.playwright-browser }} working-directory: ${{ env.frontend-directory }} run: pnpm exec playwright install --with-deps ${{ matrix.playwright-browser }} @@ -199,9 +199,6 @@ jobs: export $(grep -v '^#' .env | xargs) poetry run python manage.py createsuperuser --noinput nohup poetry run python manage.py runserver --settings=${{ env.enterprise-backend-settings-module }} & - - name: Build frontend - working-directory: ${{ env.frontend-directory }} - run: pnpm run build - name: Run tests with browser ${{ matrix.playwright-browser }} working-directory: ${{ env.enterprise-frontend-build-directory }} run: pnpm exec playwright test --project=${{ matrix.playwright-browser }}