From 0f028520aaa4faf23f4a53842b3cfa1c29529010 Mon Sep 17 00:00:00 2001 From: Lenny Peters Date: Wed, 18 Dec 2024 21:15:59 -0800 Subject: [PATCH] =?UTF-8?q?fix:=20=F0=9F=90=9B=20updated=20to=20remove=20n?= =?UTF-8?q?ot=20needed=20extra=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/githubactions.yml | 6 ++++++ .github/workflows/playwright.yml | 27 --------------------------- 2 files changed, 6 insertions(+), 27 deletions(-) delete mode 100644 .github/workflows/playwright.yml diff --git a/.github/workflows/githubactions.yml b/.github/workflows/githubactions.yml index 5ed4d1c..a2b3e8b 100644 --- a/.github/workflows/githubactions.yml +++ b/.github/workflows/githubactions.yml @@ -95,6 +95,12 @@ jobs: run: npm run build - name: Run e2e run: npm run e2e:test + - uses: actions/upload-artifact@v4 + if: ${{ !cancelled() }} + with: + name: playwright-report + path: playwright-report/ + retention-days: 30 env: PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }} sonarcloud: diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml deleted file mode 100644 index 3eb1314..0000000 --- a/.github/workflows/playwright.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Playwright Tests -on: - push: - branches: [ main, master ] - pull_request: - branches: [ main, master ] -jobs: - test: - timeout-minutes: 60 - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 - with: - node-version: lts/* - - name: Install dependencies - run: npm ci - - name: Install Playwright Browsers - run: npx playwright install --with-deps - - name: Run Playwright tests - run: npx playwright test - - uses: actions/upload-artifact@v4 - if: ${{ !cancelled() }} - with: - name: playwright-report - path: playwright-report/ - retention-days: 30