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 43234ac commit b545143Copy full SHA for b545143
.github/workflows/nightly-js-sdk.yaml
@@ -33,14 +33,16 @@ jobs:
33
node-version: 20.x
34
- name: Write Project Config
35
env:
36
- PROJECT_CONFIG: ${{ secrets.PROJECT_CONFIG }}
+ PROJECT_CONFIG: ${{ vars.PROJECT }}
37
run: echo "export const firebaseConfig = $PROJECT_CONFIG;" > src/lib/app_tests/firebase.ts
38
+ - name: Log
39
+ run: cat src/lib/app_tests/firebase.ts
40
- name: Yarn install
41
run: yarn
42
- name: Yarn build
43
run: yarn build
44
- name: Install Playwright browsers
- run: npx playwright install --with-deps
45
+ run: yarn playwright install --with-deps
46
- name: Launch E2E tests workflow
47
run: yarn test
48
0 commit comments