From 973573ef493e15e404eb9cd5b070b4dd7fafb179 Mon Sep 17 00:00:00 2001 From: mkorwel Date: Thu, 23 Oct 2025 14:42:29 -0700 Subject: [PATCH] fix(ci): restore ci job to orchestrator workflow Re-adds the `ci` job to the `orchestrator` workflow, which was accidentally removed. The `e2e` job is also updated to correctly depend on the `ci` job. --- .github/workflows/orchestrator.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/orchestrator.yml b/.github/workflows/orchestrator.yml index 08bc6496dc..f45262d580 100644 --- a/.github/workflows/orchestrator.yml +++ b/.github/workflows/orchestrator.yml @@ -42,9 +42,14 @@ jobs: npm-registry-scope: '${{ vars.NPM_REGISTRY_SCOPE }}' npm-registry-url: '${{ vars.NPM_REGISTRY_URL }}' + ci: + name: 'CI Checks' + needs: 'lint' + uses: './.github/workflows/ci.yml' + e2e: name: 'E2E Checks' - needs: ['build-and-publish'] + needs: ['build-and-publish', 'ci'] uses: './.github/workflows/e2e.yml' with: version: '${{ needs.build-and-publish.outputs.version }}'