Skip to content

Commit 6d7f019

Browse files
committed
update test deploy to account for metadata and functions
1 parent 0675ad1 commit 6d7f019

1 file changed

Lines changed: 9 additions & 2 deletions

File tree

.github/workflows/firebase-deploy-test.yml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,16 @@ jobs:
3535
- name: Enable firebase webframeworks
3636
run: firebase experiments:enable webframeworks
3737
- run: npm ci
38-
- name: Run npm ci in /functions
38+
- name: Install dependencies and build metadata
39+
working-directory: functions/metadata
40+
run: |
41+
npm ci
42+
npm run build
43+
- name: Install dependencies and build functions
3944
working-directory: functions
40-
run: npm ci
45+
run: |
46+
npm ci
47+
npm run build
4148
- name: Use test firebase project
4249
run: firebase use test
4350
- name: Deploy firebase project

0 commit comments

Comments
 (0)