Skip to content

Commit a9ea865

Browse files
committed
fix: Disable test-reporter action due to GitHub permissions issue
Portal tests are passing successfully (24 tests) but the dorny/test-reporter action fails with 'Resource not accessible by integration'. Disabled the problematic step - test results are still uploaded as artifacts.
1 parent 17645bb commit a9ea865

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/test-dotnet.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -74,14 +74,15 @@ jobs:
7474
**/TestResults/**/*.trx
7575
**/TestResults/**/coverage.cobertura.xml
7676
77-
- name: Publish Test Summary
78-
uses: dorny/test-reporter@v1
79-
if: always()
80-
with:
81-
name: .NET Test Results
82-
path: '**/TestResults/**/*.trx'
83-
reporter: dotnet-trx
84-
fail-on-error: true
77+
# Disabled due to GitHub permissions issue (Resource not accessible by integration)
78+
# - name: Publish Test Summary
79+
# uses: dorny/test-reporter@v1
80+
# if: always()
81+
# with:
82+
# name: .NET Test Results
83+
# path: '**/TestResults/**/*.trx'
84+
# reporter: dotnet-trx
85+
# fail-on-error: true
8586

8687
test-typescript:
8788
name: TypeScript/Jest Tests

0 commit comments

Comments
 (0)