Skip to content

Commit 56ee239

Browse files
committed
ci: add test reporting
1 parent 681e076 commit 56ee239

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

.github/workflows/pull_request.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@ env:
99
ANDROID_ABI: x86_64
1010
NDK_ARCH: darwin
1111

12-
1312
permissions:
1413
contents: read
1514

@@ -128,4 +127,11 @@ jobs:
128127
# this is needed on API 30+
129128
#target: google_apis
130129
arch: ${{env.ANDROID_ABI}}
131-
script: ./gradlew runtestsAndVerifyResults --stacktrace
130+
script: ./gradlew runtestsAndVerifyResults --stacktrace
131+
- name: Test Report
132+
uses: dorny/test-reporter@b082adf0eced0765477756c2a610396589b8c637 # v2.5.0
133+
if: ${{ !cancelled() }} # run this step even if previous step failed
134+
with:
135+
name: Android Runtime Tests
136+
path: test-app/dist/android_unit_test_results.xml
137+
reporter: jest-junit # Format of test results

0 commit comments

Comments
 (0)