From 70fb43274253f379a17dcecdbf816eb83b0aeec1 Mon Sep 17 00:00:00 2001 From: snomiao Date: Mon, 6 Oct 2025 23:56:06 +0000 Subject: [PATCH] fix: correct blob report output path for new workflow structure The PLAYWRIGHT_BLOB_OUTPUT_DIR was set to ../blob-report which was correct when working-directory was ComfyUI_frontend, but now that we removed the working-directory, the path should be ./blob-report to output in the repo root. --- .github/workflows/tests-ci.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/tests-ci.yaml b/.github/workflows/tests-ci.yaml index a59e89160..258fed0b1 100644 --- a/.github/workflows/tests-ci.yaml +++ b/.github/workflows/tests-ci.yaml @@ -73,7 +73,7 @@ jobs: id: playwright run: pnpm exec playwright test --project=chromium --shard=${{ matrix.shardIndex }}/${{ matrix.shardTotal }} --reporter=blob env: - PLAYWRIGHT_BLOB_OUTPUT_DIR: ../blob-report + PLAYWRIGHT_BLOB_OUTPUT_DIR: ./blob-report - name: Upload blob report uses: actions/upload-artifact@v4 @@ -143,7 +143,7 @@ jobs: - name: Checkout repository uses: actions/checkout@v5 - # Setup Test Environment, we only need playwright here + # Setup Test Environment, we only need playwright to merge reports - name: Setup frontend uses: ./.github/actions/setup-frontend with: @@ -152,7 +152,7 @@ jobs: uses: ./.github/actions/setup-playwright - name: Download blob reports - uses: actions/download-artifact@v4 + uses: actions/download-artifact@v4w with: path: ./all-blob-reports pattern: blob-report-chromium-*