diff --git a/.github/workflows/integrity-check.yml b/.github/workflows/integrity-check.yml index 5d0b09f6..59fc2d77 100644 --- a/.github/workflows/integrity-check.yml +++ b/.github/workflows/integrity-check.yml @@ -31,3 +31,9 @@ jobs: - run: bash <(curl -s https://codecov.io/bash) - run: yarn build || { echo "build command should always succeed" ; exit 61; } # - run: yarn build --quiet && git diff --quiet dist || { echo "dist should be auto generated" ; git diff dist ; exit 62; } + + orchestrator-integration: + name: Orchestrator Integration + if: github.event_name == 'push' + uses: ./.github/workflows/validate-orchestrator-integration.yml + secrets: inherit diff --git a/.github/workflows/validate-orchestrator-integration.yml b/.github/workflows/validate-orchestrator-integration.yml index 804c5041..55861d6b 100644 --- a/.github/workflows/validate-orchestrator-integration.yml +++ b/.github/workflows/validate-orchestrator-integration.yml @@ -12,6 +12,7 @@ name: Orchestrator Integration Tests on: workflow_dispatch: + workflow_call: # Allow integrity-check.yml and other workflows to invoke these tests schedule: - cron: '0 3 * * *' # Daily at 3 AM UTC