Hermes 284313f908
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
Initial import of AlgaPSA codebase from PSA server
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz

Source: /opt/alga-psa on psa.joliet.tech
2026-06-22 16:12:17 -05:00

1.7 KiB
Raw Blame History

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 Nexts 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 tsconfig paths from influencing runtime-selected entrypoints (and remove legacy shims).

TypeScript resolution

  • server/tsconfig.json and ee/server/tsconfig.json do 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/entry via packages/workflows/src/components/WorkflowComponentLoader.ts.
  • The loader falls back to @/empty/components/flow/DnDFlow if 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 (EE next build must not contain the CE stub string)
    • scripts/guard-ce-workflows-next-build.mjs (CE next build must 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