Skip to content

Commit b4ded35

Browse files
committed
fix: run next start in subshell so pnpm commands stay in repo root
1 parent abffe05 commit b4ded35

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

.github/workflows/playwright-e2e.yaml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,7 @@ jobs:
103103
run: |
104104
# Start API in dev mode + frontend from production build
105105
pnpm api:dev &
106-
cd src/SEBT.Portal.Web && pnpm start &
107-
cd ..
106+
(cd src/SEBT.Portal.Web && pnpm start) &
108107
echo "Waiting for server at http://localhost:3000..."
109108
for i in $(seq 1 90); do
110109
curl -sf --max-time 15 http://localhost:3000 > /dev/null && echo "Server ready" && break

0 commit comments

Comments
 (0)