From 59b210ff46e64596767f1d7fbcd221c39d9cd129 Mon Sep 17 00:00:00 2001 From: Jan Klattenhoff Date: Thu, 16 Jan 2025 17:24:43 +0100 Subject: [PATCH] ci: update Angular server start command in background --- .github/workflows/playwright.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 47bc524..f2ab451 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -29,11 +29,10 @@ jobs: run: npm run build # Start Angular development server - - name: Start Angular Development Server - run: npm start + - name: Start Angular Development Server in Background + run: nohup npm start > angular.log 2>&1 & env: - PORT: 4200 # Ensures the server runs on a predictable port - continue-on-error: true + PORT: 4200 # Ensure the server runs on a predictable port # Install Playwright and dependencies - name: Install Playwright Browsers