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