chore: get beta up to date with main, with additional documentation and dependency resolutions #2429
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Branch QA | |
on: | |
pull_request: | |
branches: | |
- main | |
- beta | |
paths-ignore: | |
- "docs/**" | |
- "**/README.md" | |
workflow_dispatch: | |
jobs: | |
dependencies: | |
uses: ./.github/workflows/dependabot.yml | |
secrets: inherit | |
lint-and-test: | |
needs: [dependencies] | |
if: ${{!contains(github.event.head_commit.message, 'chore(deps-dev)')}} | |
name: Workspace | |
strategy: | |
matrix: | |
workspace: [model, designer, runner, submitter] | |
uses: ./.github/workflows/lint-and-test.yml | |
with: | |
workspace: ${{ matrix.workspace }} | |
build-designer: | |
name: Designer | |
uses: ./.github/workflows/build.yml | |
with: | |
app: designer | |
secrets: inherit | |
build-submitter: | |
name: Submitter | |
uses: ./.github/workflows/build.yml | |
with: | |
app: submitter | |
secrets: inherit | |
build-runner: | |
name: Runner | |
uses: ./.github/workflows/build.yml | |
with: | |
app: runner | |
secrets: inherit | |
smoke-test: | |
needs: [build-runner, build-designer] | |
uses: ./.github/workflows/smoke-test.yml | |
with: | |
runner-cache-ref: ${{needs.build-runner.outputs.tag}} | |
designer-cache-ref: ${{needs.build-designer.outputs.tag}} | |
secrets: inherit |