From f58832619e9c7c00a493b8ebb3bc1c3acee30ff5 Mon Sep 17 00:00:00 2001 From: Gagan Suie Date: Fri, 13 Jan 2023 19:51:25 -0600 Subject: [PATCH] Fix: testing ci playwright changes --- .github/workflows/ci-dev.yml | 4 +++- .github/workflows/ci-prod.yml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-dev.yml b/.github/workflows/ci-dev.yml index 9ffd771c..75cdae70 100644 --- a/.github/workflows/ci-dev.yml +++ b/.github/workflows/ci-dev.yml @@ -35,7 +35,9 @@ jobs: - name: Run Playwright Tests continue-on-error: true - run: npm run test + run: | + npm run check + npm run test - name: Convert E2E Report to Coverage Report run: | diff --git a/.github/workflows/ci-prod.yml b/.github/workflows/ci-prod.yml index b4193a3f..ed163f99 100644 --- a/.github/workflows/ci-prod.yml +++ b/.github/workflows/ci-prod.yml @@ -39,7 +39,9 @@ jobs: - name: Run Playwright Tests continue-on-error: true - run: npm run test + run: | + npm run check + npm run test - name: Convert E2E Report to Coverage Report run: |