Files
super-app/.github/workflows/master-pr.yml
2025-01-24 10:52:16 +00:00

34 lines
759 B
YAML

name: Master PR CI
on:
pull_request:
branches: [ master ]
types: [ opened, reopened, synchronize, ready_for_review, converted_to_draft ]
merge_group:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
build:
if: github.event.pull_request.draft == false
uses: ./.github/workflows/generate-build.yml
with:
environment: qa
type: debug
output: APK
secrets: inherit
build-size-difference:
uses: ./.github/workflows/apk-size-difference.yml
needs: [ build ]
secrets: inherit
checkstyle:
if: github.event.pull_request.draft == false
uses: ./.github/workflows/spotless.yml
with:
action: check
secrets: inherit