From 26b5ecf11e5b52c90c94bb394e24af80fee50488 Mon Sep 17 00:00:00 2001 From: MrMyatNoe Date: Sun, 7 Sep 2025 18:01:36 +0700 Subject: [PATCH 1/2] ci: run only chromim --- .github/workflows/playwright.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 3eb1314..a05ebef 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -15,10 +15,10 @@ jobs: 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 + - name: Install Chromium only + run: npx playwright install chromium + - name: Run Playwright tests (chromium only, fail fast) + run: npx playwright test --project=chromium --fail-fast - uses: actions/upload-artifact@v4 if: ${{ !cancelled() }} with: From bbc9ecc7b673e723534ad7984b5a67627e63f5e1 Mon Sep 17 00:00:00 2001 From: MrMyatNoe Date: Sun, 7 Sep 2025 18:08:01 +0700 Subject: [PATCH 2/2] ci: remove fail first --- .github/workflows/playwright.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index a05ebef..afc8ed4 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -18,7 +18,7 @@ jobs: - name: Install Chromium only run: npx playwright install chromium - name: Run Playwright tests (chromium only, fail fast) - run: npx playwright test --project=chromium --fail-fast + run: npx playwright test --project=chromium - uses: actions/upload-artifact@v4 if: ${{ !cancelled() }} with: