File tree Expand file tree Collapse file tree 2 files changed +9
-4
lines changed
actions/setup_test_action Expand file tree Collapse file tree 2 files changed +9
-4
lines changed Original file line number Diff line number Diff line change 29
29
shell : bash
30
30
run : |
31
31
firebase emulators:start --config=./test/firebase.json &
32
- wait-on http://localhost:9099
33
- wait-on http://localhost:8080
34
- wait-on http://localhost:9000
35
- wait-on http://localhost:9199
32
+ echo "Waiting for Firebase Auth emulator to start..."
33
+ wait-on http://127.0.0.1:9099
34
+ echo "Waiting for Firebase Firestore emulator to start..."
35
+ wait-on http://127.0.0.1:8080
36
+ echo "Waiting for Firebase Database emulator to start..."
37
+ wait-on http://127.0.0.1:9000
38
+ echo "Waiting for Firebase Storage emulator to start..."
39
+ wait-on http://127.0.0.1:9199
Original file line number Diff line number Diff line change 66
66
- uses : actions/checkout@v3
67
67
- name : Setup test environment
68
68
uses : ./.github/actions/setup_test_action
69
+ timeout-minutes : 10
69
70
- name : Run JS Tests
70
71
run : ./gradlew cleanTest jsTest
71
72
- name : Upload JS test artifact
You can’t perform that action at this time.
0 commit comments