Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz Source: /opt/alga-psa on psa.joliet.tech
1.7 KiB
1.7 KiB
Workflow UI EE selection (post-migration notes)
Status: implemented in the current repo state.
What changed
The Workflow UI no longer relies on a tsconfig.json paths mapping for @alga-psa/workflows/entry (which can be picked up by Next’s JsConfigPathsPlugin and produce “hybrid” builds).
Instead, Next config aliasing is authoritative and points directly at concrete files:
- EE:
ee/server/src/workflows/entry.tsx - CE:
server/src/empty/workflows/entry.tsx
Where the entry is selected
server/next.config.mjs- Webpack alias:
@alga-psa/workflows/entry-> EE/CE concrete entry files - Turbopack alias:
@alga-psa/workflows/entry-> EE/CE concrete entry files - EE guard: keep
tsconfigpaths from influencing runtime-selected entrypoints (and remove legacy shims).
- Webpack alias:
TypeScript resolution
server/tsconfig.jsonandee/server/tsconfig.jsondo not map@alga-psa/workflows/entry.- Typings are provided via
server/src/types/external-modules.d.ts(DnDFlow).
Runtime import surface (unchanged)
- App code still imports
@alga-psa/workflows/entryviapackages/workflows/src/components/WorkflowComponentLoader.ts. - The loader falls back to
@/empty/components/flow/DnDFlowif the primary dynamic import fails.
Regression protection
- Build guards:
scripts/guard-workflows-entry-edition-selection.mjs(asserts deterministic alias selection)scripts/guard-ee-workflows-next-build.mjs(EEnext buildmust not contain the CE stub string)scripts/guard-ce-workflows-next-build.mjs(CEnext buildmust contain the CE stub string).github/workflows/workflows-ee-build-guard.yml
- UI smoke:
ee/server/src/__tests__/integration/workflows-ee-entry-smoke.playwright.test.ts