From a1c11eef03d5182135040eebcf54ea1c509e8b44 Mon Sep 17 00:00:00 2001 From: Patrik Oldsberg Date: Mon, 9 Feb 2026 17:21:53 +0100 Subject: [PATCH] Remove custom UI package build steps from workflows The UI package now uses the standard backstage-cli build, so there's no need for separate build steps in CI workflows. Signed-off-by: Patrik Oldsberg Co-authored-by: Cursor --- .github/workflows/ci.yml | 4 ---- .github/workflows/deploy_packages.yml | 4 ---- .github/workflows/verify_e2e-linux.yml | 2 -- .github/workflows/verify_e2e-windows.yml | 2 -- 4 files changed, 12 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c9ecebd1d4..1ab3b7f9a5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -126,10 +126,6 @@ jobs: - name: build all packages run: yarn backstage-cli repo build --all - # For now BUI has a custom build script and needs to be built separately - - name: build BUI - run: yarn --cwd packages/ui build - # Build docs-ui to ensure documentation site builds successfully - name: install docs-ui dependencies working-directory: docs-ui diff --git a/.github/workflows/deploy_packages.yml b/.github/workflows/deploy_packages.yml index c975441964..fb9c2171ee 100644 --- a/.github/workflows/deploy_packages.yml +++ b/.github/workflows/deploy_packages.yml @@ -110,10 +110,6 @@ jobs: - name: build run: yarn backstage-cli repo build --all - # For now BUI has a custom build script and needs to be built separately - - name: build BUI - run: yarn --cwd packages/ui build - - name: verify type dependencies run: yarn lint:type-deps diff --git a/.github/workflows/verify_e2e-linux.yml b/.github/workflows/verify_e2e-linux.yml index 8603ed1ae1..ecb21cb7e8 100644 --- a/.github/workflows/verify_e2e-linux.yml +++ b/.github/workflows/verify_e2e-linux.yml @@ -66,8 +66,6 @@ jobs: - run: yarn tsc - run: yarn backstage-cli repo build - # BUI has a custom build script and needs to be built separately - - run: yarn --cwd packages/ui build - name: run E2E test run: | sudo sysctl fs.inotify.max_user_watches=524288 diff --git a/.github/workflows/verify_e2e-windows.yml b/.github/workflows/verify_e2e-windows.yml index 60b0328bf3..6445d7504a 100644 --- a/.github/workflows/verify_e2e-windows.yml +++ b/.github/workflows/verify_e2e-windows.yml @@ -86,8 +86,6 @@ jobs: - run: yarn tsc - run: yarn backstage-cli repo build - # BUI has a custom build script and needs to be built separately - - run: yarn --cwd packages/ui build - name: run E2E test run: yarn e2e-test run env: