diff --git a/.github/workflows/end_to_end_tests.yml b/.github/workflows/end_to_end_tests.yml index 99d688c5..ad59dfc4 100644 --- a/.github/workflows/end_to_end_tests.yml +++ b/.github/workflows/end_to_end_tests.yml @@ -25,6 +25,8 @@ jobs: run: cp .env.template .env - name: Start WorkAdventure run: docker-compose -f docker-compose.yaml -f docker-compose.e2e.yml up -d --build + - name: Wait for environment to Start + run: sleep 60 - name: Run Playwright tests run: npm run test-prod-like working-directory: tests @@ -32,5 +34,5 @@ jobs: if: always() with: name: playwright-report - path: playwright-report/ + path: tests/playwright-report/ retention-days: 30