Skip to content

Commit a68eddd

Browse files
author
Aleksander Brylski
committed
Merge branch 'main' into feat/small-screen
# Conflicts: # .github/workflows/build-and-deploy-on-merge.yml # .github/workflows/build-and-test-on-pr.yml # packages/functions/src/rtdbInstances.ts # packages/functions/test/onConnectionsDelete.spec.ts # packages/functions/test/scheduledMoveGame.spec.ts # packages/functions/test/selectBestRTDBInstance.spec.ts # packages/functions/test/utils.ts
2 parents 1c238bb + 6ef5e4f commit a68eddd

File tree

4 files changed

+13
-6
lines changed

4 files changed

+13
-6
lines changed

.github/workflows/build-and-deploy-on-merge.yml

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
uses: actions/setup-node@v3
1414
with:
1515
node-version: '14'
16+
1617
- name: Checkout merged code
1718
uses: actions/checkout@v2
1819

.github/workflows/build-and-deploy-on-version.yml

+5
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ jobs:
88
runs-on: ubuntu-latest
99
environment: test
1010
steps:
11+
- name: Install Node
12+
uses: actions/setup-node@v3
13+
with:
14+
node-version: '14'
15+
1116
- name: Checkout merged code
1217
uses: actions/checkout@v2
1318

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -304,3 +304,4 @@ npm run scripts:load-initial-data:local
304304
```
305305

306306
###### tags: `Pipeline` `Documentation` `README` `Eficode` `xtream`
307+

packages/functions/src/rtdbInstances.ts

+6-6
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
const rtdbInstancesUrl = [
22
{
3-
url: "https://pipeline-game-development-default-rtdb.firebasedatabase.app",
4-
name: "pipeline-game-development-default-rtdb",
5-
id: "default-rtdb",
3+
url: 'https://pipeline-game-development-default-rtdb.firebasedatabase.app',
4+
name: 'pipeline-game-development-default-rtdb',
5+
id: 'default-rtdb',
66
},
77
{
8-
url: "https://pipeline-game-development-instance-1.firebasedatabase.app",
9-
name: "pipeline-game-development-instance-1",
10-
id: "instance-1",
8+
url: 'https://pipeline-game-development-instance-1.firebasedatabase.app',
9+
name: 'pipeline-game-development-instance-1',
10+
id: 'instance-1',
1111
},
1212
];
1313

0 commit comments

Comments
 (0)