We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0989356 commit c7cbd68Copy full SHA for c7cbd68
.github/workflows/ci.yml
@@ -30,10 +30,8 @@ jobs:
30
- name: Build with Gradle Wrapper
31
run: ./gradlew build
32
33
- - name: Test Report
34
- uses: dorny/test-reporter@v2
35
- if: success() || failure()
+ - name: Publish test results
+ uses: EnricoMi/publish-unit-test-result-action@v2
+ if: always()
36
with:
37
- name: JEST Tests
38
- path: "**/build/test-results/**/*.xml"
39
- reporter: jest-junit
+ files: "**/build/test-results/**/*.xml"
0 commit comments