Skip to content

Commit 57c1391

Browse files
committed
Split start and wait into 2 steps
1 parent 6def555 commit 57c1391

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/actions/setup_test_action/action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,11 @@ runs:
2626
shell: bash
2727
run: npm install -g firebase-tools wait-on
2828
- name: Start Firebase emulator
29+
shell: bash
30+
run: firebase emulators:start --config=./test/firebase.json &
31+
- name: Wait for Firebase emulator to start
2932
shell: bash
3033
run: |
31-
firebase emulators:start --config=./test/firebase.json &
3234
echo "Waiting for Firebase Auth emulator to start..."
3335
wait-on http://127.0.0.1:9099
3436
echo "Waiting for Firebase Firestore emulator to start..."

0 commit comments

Comments
 (0)