File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change @@ -30,12 +30,20 @@ jobs:
30
30
run : ./gradlew assemble
31
31
- name : Run JS Tests
32
32
run : ./gradlew cleanTest jsTest
33
- - name : Upload test artifact
33
+ - name : Upload JS test artifact
34
34
uses : actions/upload-artifact@v2
35
35
if : failure()
36
36
with :
37
- name : " JSTest Report HTML"
37
+ name : " JS Test Report HTML"
38
38
path : " firebase-firestore/build/reports/tests/jsTest/"
39
+ - name : Run iOS Tests
40
+ run : ./gradlew cleanTest iosTest
41
+ - name : Upload iOS test artifact
42
+ uses : actions/upload-artifact@v2
43
+ if : failure()
44
+ with :
45
+ name : " iOS Test Report HTML"
46
+ path : " firebase-firestore/build/reports/tests/iosTest/"
39
47
- name : Run Android Instrumented Tests
40
48
uses : reactivecircus/android-emulator-runner@v2
41
49
with :
44
52
arch : x86_64
45
53
profile : Nexus 6
46
54
script : ./gradlew connectedAndroidTest
55
+ - name : Upload Android test artifact
56
+ uses : actions/upload-artifact@v2
57
+ if : failure()
58
+ with :
59
+ name : " Android Test Report HTML"
60
+ path : " firebase-firestore/build/reports/tests/androidTests/"
You can’t perform that action at this time.
0 commit comments