We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce1bf3c commit a016f89Copy full SHA for a016f89
.github/workflows/nightly-js-sdk.yaml
@@ -15,6 +15,9 @@
15
name: Firebase JS SDK Nightly
16
17
on:
18
+ pull_request:
19
+ branches:
20
+ - main
21
workflow_dispatch:
22
23
jobs:
@@ -28,8 +31,14 @@ jobs:
28
31
uses: actions/setup-node@v3
29
32
with:
30
33
node-version: 20.x
34
+ - name: Write Project Config
35
+ env:
36
+ PROJECT_CONFIG: ${{ secrets.TEST_PROJECT_CONFIG }}
37
+ run: echo "export const firebaseConfig = $PROJECT_CONFIG;" > src/lib/app_tests/firebase.ts
38
- name: Yarn install
39
run: yarn
40
+ - name: Yarn build
41
+ run: yarn build
42
- name: Launch E2E tests workflow
- run: |
- echo Hello World (TBD)
43
+ run: yarn test
44
+
0 commit comments