From bb4cc61be42429dd2312ddb0e09993431f9df2bc Mon Sep 17 00:00:00 2001 From: haotool Date: Sat, 27 Jun 2026 19:39:10 +0800 Subject: [PATCH] =?UTF-8?q?fix(ci):=20=E4=BF=AE=E6=AD=A3=20E2E=20=E5=A4=9A?= =?UTF-8?q?=20reporter=20CLI=20=E8=AA=9E=E6=B3=95=E8=AE=93=20blob=20?= =?UTF-8?q?=E5=A0=B1=E5=91=8A=E7=94=A2=E5=87=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - 重複的 --reporter= flag 只有最後 list 生效,blob 從未產出,blob-report 為空 - 連帶 merge-reports 找不到報告而失敗,是 main CI 長期紅燈的真正根因 - 依 Playwright 官方文檔改為單一逗號語法 --reporter=blob,github,list,三者同時生效 - 與 PR482 路徑修正合計,E2E Merge Reports 應由 fail 轉 pass 測試:context7 核對 Playwright reporter 逗號語法;以 main push 的 E2E Merge Reports 轉 pass 驗證 --- .github/workflows/ci.yml | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c65f5cc1f..ba1b3b3c0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -325,9 +325,7 @@ jobs: --project=chromium-desktop \ --project=chromium-mobile \ --shard=${{ matrix.shard }}/2 \ - --reporter=blob \ - --reporter=github \ - --reporter=list + --reporter=blob,github,list - name: Stop preview server if: always()