diff --git a/.github/workflows/e2e-testing.yml b/.github/workflows/e2e-testing.yml index da7fb666a5..6d7a511166 100644 --- a/.github/workflows/e2e-testing.yml +++ b/.github/workflows/e2e-testing.yml @@ -7,30 +7,5 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Start web service - run: | - cp .env.example .env - docker-compose up web nginx - - - uses: actions/setup-node@v3 - with: - node-version: 20 - cache: yarn - - - name: Install dependencies - run: yarn workspace e2e_testing install - - - name: Install Playwright browsers - run: yarn workspace e2e_testing exec playwright install --with-deps - - - name: Run Playwright tests - run: yarn workspace e2e_testing test - env: - BASE_URL: http://localhost:8063 - - - uses: actions/upload-artifact@v3 - if: always() - with: - name: playwright-report - path: e2e_testing/playwright-report/ - retention-days: 30 + - name: Run web service and E2E tests + run: docker compose up e2e-tests