From e2ba5c7b62a22c7464626d468079246915052d6a Mon Sep 17 00:00:00 2001 From: openhands Date: Tue, 24 Feb 2026 14:03:11 +0000 Subject: [PATCH] ci: overlay @harb/ui-shared in webapp and landing CI services (#150) Co-Authored-By: Claude Sonnet 4.6 --- .woodpecker/e2e.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.woodpecker/e2e.yml b/.woodpecker/e2e.yml index 60a2afb..42e3df0 100644 --- a/.woodpecker/e2e.yml +++ b/.woodpecker/e2e.yml @@ -184,6 +184,12 @@ services: cp -r "$WS/web-app/src/." /app/web-app/src/ echo "webapp/src updated from workspace" fi + for f in vite.config.ts vite.config.js; do + if [ -f "$WS/web-app/$f" ]; then + cp "$WS/web-app/$f" /app/web-app/"$f" + echo "webapp/$f updated from workspace" + fi + done # Overlay @harb/web3 shared package from workspace if [ -d "$WS/packages/web3" ]; then @@ -232,6 +238,12 @@ services: cp -r "$WS/landing/src/." /app/landing/src/ echo "landing/src updated from workspace" fi + for f in vite.config.ts vite.config.js; do + if [ -f "$WS/landing/$f" ]; then + cp "$WS/landing/$f" /app/landing/"$f" + echo "landing/$f updated from workspace" + fi + done # Overlay @harb/web3 shared package if [ -d "$WS/packages/web3" ]; then