mirror of
https://github.com/privacy-scaling-explorations/p0tion.git
synced 2026-01-12 23:38:09 -05:00
32 lines
676 B
YAML
32 lines
676 B
YAML
name: Deploy and Test Dev
|
|
|
|
on:
|
|
pull_request:
|
|
branches: dev
|
|
push:
|
|
branches: dev
|
|
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
deploy-dev:
|
|
uses: ./.github/workflows/firebase-deploy-dev.yaml
|
|
secrets: inherit
|
|
with:
|
|
environment: dev
|
|
branch: ${{ github.ref }}
|
|
firebase_project: ${{ vars.FIREBASE_PROJECT_DEV }}
|
|
|
|
test-dev:
|
|
needs: deploy-dev
|
|
uses: ./.github/workflows/firebase-test.yaml
|
|
secrets: inherit
|
|
with:
|
|
environment: dev
|
|
github_ref: ${{ github.ref }}
|
|
firebase_project: ${{ vars.FIREBASE_PROJECT_DEV }}
|