Skip to content

Commit acaee0e

Browse files
committed
Enable iOS tests at CI
1 parent 2cbbe39 commit acaee0e

File tree

1 file changed

+16
-2
lines changed

1 file changed

+16
-2
lines changed

.github/workflows/pull_request.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,20 @@ jobs:
3030
run: ./gradlew assemble
3131
- name: Run JS Tests
3232
run: ./gradlew cleanTest jsTest
33-
- name: Upload test artifact
33+
- name: Upload JS test artifact
3434
uses: actions/upload-artifact@v2
3535
if: failure()
3636
with:
37-
name: "JSTest Report HTML"
37+
name: "JS Test Report HTML"
3838
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/"
3947
- name: Run Android Instrumented Tests
4048
uses: reactivecircus/android-emulator-runner@v2
4149
with:
@@ -44,3 +52,9 @@ jobs:
4452
arch: x86_64
4553
profile: Nexus 6
4654
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/"

0 commit comments

Comments
 (0)