fix(ci): update workflow references from loadEnterpriseServices to loadPluginServices

CI workflows still referenced the old function name after the rename.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
frostebite
2026-03-10 09:30:58 +00:00
parent 7cbdefc00a
commit e604053195
2 changed files with 11 additions and 11 deletions
@@ -90,7 +90,7 @@ jobs:
- name: Verify all services and lazy loaders
run: |
node -e "
const { loadOrchestrator, loadEnterpriseServices } = require('./lib/model/orchestrator-plugin');
const { loadOrchestrator, loadPluginServices } = require('./lib/model/orchestrator-plugin');
(async () => {
const orch = await loadOrchestrator();
if (!orch || typeof orch.run !== 'function') {
@@ -99,8 +99,8 @@ jobs:
}
console.log('✓ loadOrchestrator().run is a function');
const services = await loadEnterpriseServices();
if (!services) { console.error('ERROR: loadEnterpriseServices failed'); process.exit(1); }
const services = await loadPluginServices();
if (!services) { console.error('ERROR: loadPluginServices failed'); process.exit(1); }
const eager = ['BuildReliabilityService','TestWorkflowService','HotRunnerService','OutputService','OutputTypeRegistry','ArtifactUploadHandler','IncrementalSyncService'];
for (const s of eager) { if (!services[s]) { console.error('Missing: ' + s); process.exit(1); } }