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.
This commit is contained in:
mkorwel
2025-10-23 14:42:29 -07:00
parent 6f4c9a5317
commit 973573ef49
+6 -1
View File
@@ -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 }}'