diff --git a/.github/workflows/tests-linux.yml b/.github/workflows/tests-linux.yml index b5bcd6d60..f5055635f 100644 --- a/.github/workflows/tests-linux.yml +++ b/.github/workflows/tests-linux.yml @@ -38,6 +38,14 @@ jobs: - name: Run CLI Tests uses: ./.github/actions/tests/run-cli-tests + - name: Publish Test Report + uses: EnricoMi/publish-unit-test-result-action@v2 + if: always() + with: + check_name: CLI Test Results (Linux) + files: packages/bruno-tests/collection/junit.xml + comment_mode: always + e2e-test: name: Playwright E2E Tests (Linux) timeout-minutes: 120 diff --git a/.github/workflows/tests-macos.yml b/.github/workflows/tests-macos.yml index bda09d6a7..c9143589c 100644 --- a/.github/workflows/tests-macos.yml +++ b/.github/workflows/tests-macos.yml @@ -38,6 +38,14 @@ jobs: - name: Run CLI Tests uses: ./.github/actions/tests/run-cli-tests + - name: Publish Test Report + uses: EnricoMi/publish-unit-test-result-action/macos@v2 + if: always() + with: + check_name: CLI Test Results (macOS) + files: packages/bruno-tests/collection/junit.xml + comment_mode: off + e2e-test: name: Playwright E2E Tests (macOS) timeout-minutes: 150 diff --git a/.github/workflows/tests-windows.yml b/.github/workflows/tests-windows.yml index 3c3e71c71..8c752e569 100644 --- a/.github/workflows/tests-windows.yml +++ b/.github/workflows/tests-windows.yml @@ -46,6 +46,14 @@ jobs: with: shell: pwsh + - name: Publish Test Report + uses: EnricoMi/publish-unit-test-result-action/windows@v2 + if: always() + with: + check_name: CLI Test Results (Windows) + files: packages/bruno-tests/collection/junit.xml + comment_mode: off + e2e-test: name: Playwright E2E Tests (Windows) timeout-minutes: 120