feat(ci): Implement orchestrator workflow for unified build and test

This commit is contained in:
mkorwel
2025-10-21 19:21:45 -07:00
parent 8383974276
commit ff3398f297
6 changed files with 136 additions and 237 deletions
+32
View File
@@ -0,0 +1,32 @@
# .github/workflows/pr-checks.yml
name: 'PR Checks'
on:
pull_request:
branches:
- 'main'
- 'release/**'
merge_group:
concurrency:
group: '${{ github.workflow }}-${{ github.head_ref || github.ref }}'
cancel-in-progress: true
jobs:
build-and-publish:
name: 'Build and Publish CI Bundle'
uses: ./.github/workflows/build-and-publish.yml
ci:
name: 'CI Checks'
needs: build-and-publish
uses: ./.github/workflows/ci.yml
with:
tag: ${{ needs.build-and-publish.outputs.tag }}
e2e:
name: 'E2E Checks'
needs: build-and-publish
uses: ./.github/workflows/e2e.yml
with:
tag: ${{ needs.build-and-publish.outputs.tag }}