diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5477e569..639f02a9 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,18 +58,12 @@ jobs: name: lighthouse-test-results-${{matrix.os.prettyName}} path: ${{github.workspace}}/TestResults-${{matrix.os.prettyName}}.trx - - name: Process Test Results (Control) - if: ${{ matrix.os.prettyName == 'Linux' }} - uses: im-open/process-dotnet-test-results@v2.0.1 - with: - github-token: ${{ secrets.GITHUB_TOKEN }} - - name: Process Test Results - if: ${{ matrix.os.prettyName != 'Linux' }} - uses: im-open/process-dotnet-test-results@v2.0.1 + id: process-trx + uses: im-open/process-dotnet-test-results@v2.0.2 with: github-token: ${{ secrets.GITHUB_TOKEN }} - create-status-check: false + create-status-check: ${{ matrix.os.prettyName == 'Linux' && 'true' || 'false' }} create-pr-comment: false update-comment-if-one-exists: false