Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 1 addition & 25 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -270,9 +270,7 @@ jobs:
${{ runner.os }}-frontend-node-

- name: Install frontend dependencies
working-directory: frontend
run: |
rm -rf node_modules
npm ci --include=optional

- name: Run frontend linter
Expand All @@ -296,17 +294,7 @@ jobs:
# Federation remotes (see docs/module-federation.md) since the host now lazy-loads them
# instead of bundling them directly -- each is an independent npm project needing its own
# install.
- name: Install dashboard remote dependencies
working-directory: frontend-dashboard-remote
run: |
rm -rf node_modules
npm ci --include=optional

- name: Install wizard remote dependencies
working-directory: frontend-wizard-remote
run: |
rm -rf node_modules
npm ci --include=optional

- name: Run frontend e2e tests
working-directory: frontend
Expand Down Expand Up @@ -365,23 +353,11 @@ jobs:

# The host and the two Module Federation remotes it loads at runtime (see
# docs/module-federation.md) are independent npm projects, each installed separately.
- name: Install host dependencies
working-directory: frontend
- name: Install monorepo dependencies
run: |
rm -rf node_modules
npm ci --include=optional

- name: Install dashboard remote dependencies
working-directory: frontend-dashboard-remote
run: |
rm -rf node_modules
npm ci --include=optional

- name: Install wizard remote dependencies
working-directory: frontend-wizard-remote
run: |
rm -rf node_modules
npm ci --include=optional

- name: Typecheck and build dashboard remote
working-directory: frontend-dashboard-remote
Expand Down
12 changes: 0 additions & 12 deletions .github/workflows/e2e-sandbox.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,26 +74,14 @@ jobs:
# the Frontend Checks job and fall back to `npm install`, which resolves
# workspace packages from the repo and succeeds.
- name: Install frontend dependencies
working-directory: frontend
run: |
rm -rf node_modules
npm ci --include=optional

# playwright.config.ts's webServer also builds+previews the dashboard/wizard Module
# Federation remotes (see docs/module-federation.md) since the host now lazy-loads them
# instead of bundling them directly -- each is an independent npm project needing its own
# install (mirrors ci.yml's frontend-checks job, which builds the same three apps).
- name: Install dashboard remote dependencies
working-directory: frontend-dashboard-remote
run: |
rm -rf node_modules
npm ci --include=optional

- name: Install wizard remote dependencies
working-directory: frontend-wizard-remote
run: |
rm -rf node_modules
npm ci --include=optional

- name: Install Playwright browsers
working-directory: frontend
Expand Down
1 change: 1 addition & 0 deletions frontend-dashboard-remote/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
"lucide-react": "^1.32.0",
"react": "^19.2.8",
"react-dom": "^19.2.8",
"@pactum/soroban-client": "*",
"zod": "^4.4.3"
},
"devDependencies": {
Expand Down
Loading