Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/firebase-hosting-merge.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
name: Deploy prod frontend on merge

on:
push:
branches:
- main

permissions:
contents: read

jobs:
build_and_deploy:
runs-on: ubuntu-latest
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/firebase-hosting-pull-request.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
name: Deploy frontend preview on PR

on: pull_request

permissions:
checks: write
contents: read
pull-requests: write

jobs:
build_and_preview:
if: ${{ github.event.pull_request.head.repo.full_name == github.repository }}
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/frontend-ci.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
name: Run Frontend CI on push

on: [push]

permissions:
contents: read

jobs:
frontend-ci:
runs-on: ubuntu-latest
Expand Down