File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -1146,7 +1146,7 @@ jobs:
1146
1146
uses : actions/setup-node@v2
1147
1147
with :
1148
1148
node-version : 14.x
1149
- - name : Setup java
1149
+ - name : Setup java 17 (for Firestore emulator)
1150
1150
uses : actions/setup-java@v3
1151
1151
with :
1152
1152
distribution : ' temurin'
@@ -1156,6 +1156,11 @@ jobs:
1156
1156
run : |
1157
1157
npm install -g firebase-tools
1158
1158
firebase emulators:start --only firestore --project demo-example &
1159
+ - name : Setup java 8 (for running the tests)
1160
+ uses : actions/setup-java@v3
1161
+ with :
1162
+ distribution : ' temurin'
1163
+ java-version : ' 8'
1159
1164
- name : Run Android integration tests on Emulator locally
1160
1165
timeout-minutes : 120
1161
1166
if : steps.get-device-type.outputs.device_type == 'virtual'
You can’t perform that action at this time.
0 commit comments