Skip to content

Commit 2aed1f5

Browse files
committed
test(emulator): port numbers as numbers not strings
quiets some firebase emulator startup warnings
1 parent a18a5fe commit 2aed1f5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/scripts/firebase.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -18,19 +18,19 @@
1818
},
1919
"emulators": {
2020
"auth": {
21-
"port": "9099"
21+
"port": 9099
2222
},
2323
"database": {
24-
"port": "9000"
24+
"port": 9000
2525
},
2626
"firestore": {
27-
"port": "8080"
27+
"port": 8080
2828
},
2929
"functions": {
30-
"port": "5001"
30+
"port": 5001
3131
},
3232
"storage": {
33-
"port": "9199"
33+
"port": 9199
3434
},
3535
"ui": {
3636
"enabled": true

0 commit comments

Comments
 (0)