Skip to content

Commit

Permalink
Merge pull request #498 from ubc-biztech/fix-firebase-3
Browse files Browse the repository at this point in the history
Fix firebase 3
  • Loading branch information
ddennis924 authored Jan 3, 2024
2 parents ead4f50 + 4cced44 commit af5d160
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ jobs:
- uses: actions/setup-node@v3
with:
node-version: '16.13.2'
- name: Remove Firebase CLI
run: npm remove -g firebase-tools
- name: Install Firebase CLI
run: npm install -g [email protected]

- name: Dev Firebase Build
if: github.ref == 'refs/heads/dev'
Expand Down
6 changes: 6 additions & 0 deletions .github/workflows/firebase-hosting-pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@ jobs:
with:
node-version: '16.13.2'

- name: Remove Firebase CLI
run: npm remove -g firebase-tools

- name: Install Firebase CLI
run: npm install -g [email protected]

- name: Dev Firebase Build
if: github.event.pull_request.base.ref == 'dev'
run: npm ci && npm run build
Expand Down

0 comments on commit af5d160

Please sign in to comment.