diff --git a/.github/workflows/TEST_e2e.yml b/.github/workflows/TEST_e2e.yml index f8d35b7..82da7f7 100644 --- a/.github/workflows/TEST_e2e.yml +++ b/.github/workflows/TEST_e2e.yml @@ -34,8 +34,14 @@ jobs: - name: 🎭 Install Playwright Browsers run: pnpm i; pnpm playwright install --with-deps - - name: 💀 Run E2E Tests - run: pnpm nx run-many -t e2e -p docs-e2e website-e2e portal-e2e --parallel=false --reporter=html --verbose + - name: 💀 Run Docs E2E Tests + run: pnpm nx run docs-e2e:e2e --reporter=html --verbose + + - name: 💀 Run Portal E2E Tests + run: pnpm nx run portal-e2e:e2e --reporter=html --verbose + + - name: 💀 Run Website E2E Tests + run: pnpm nx run website-e2e:e2e --reporter=html --verbose - name: Check Playwright Report Directory 🎭 run: ls -la playwright-report/ @@ -44,7 +50,7 @@ jobs: uses: actions/upload-artifact@v4 if: always() with: - name: playwright-report + name: all-playwright-reports path: playwright-report/ retention-days: 30