From d818324d529625fec1c0e771ce32c03daefba77c Mon Sep 17 00:00:00 2001 From: perco12 Date: Thu, 19 Sep 2024 11:32:02 -0500 Subject: [PATCH] seperate files --- .github/workflows/playwright.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index f3346c7d14..65a5c194d6 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -29,15 +29,15 @@ jobs: ./.github/scripts/runServerV2.sh - name: Run Playwright Modals continue-on-error: true - run: npx playwright test tests/playwright/tests/sdk/modals --grep @${{matrix.countries}} --output=playwright-report-${{matrix.countries}} + run: npx playwright test tests/playwright/tests/sdk/modals --grep @${{matrix.countries}} --output=playwright-report-${{matrix.countries}}/modal - name: Run Playwright Messages continue-on-error: true - run: npx playwright test tests/playwright/tests/sdk/messages --grep @${{matrix.countries}} --output=playwright-report-${{matrix.countries}} + run: npx playwright test tests/playwright/tests/sdk/messages --grep @${{matrix.countries}} --output=playwright-report-${{matrix.countries}}/message - uses: actions/upload-artifact@v4 if: always() with: name: playwright-report-${{matrix.countries}} - path: playwright-report/ + path: playwright-report/** retention-days: 30