From 9e70e2a0901b1ecd97e6c2c1381b6bb50634df43 Mon Sep 17 00:00:00 2001 From: Jan Klattenhoff Date: Fri, 17 Jan 2025 11:06:11 +0100 Subject: [PATCH] fix: correct Angular build target in workflows and config --- .github/workflows/playwright.yml | 2 +- angular.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 08e20da..d733973 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -52,7 +52,7 @@ jobs: # Start Angular development server - name: Start Angular Development Server in Background - run: ng serve --configuration=pipeline # > angular.log 2>&1 & + run: ng serve --configuration=pipeline > angular.log 2>&1 & env: PORT: 4200 # Ensure the server runs on a predictable port diff --git a/angular.json b/angular.json index b821242..58aa354 100644 --- a/angular.json +++ b/angular.json @@ -74,7 +74,7 @@ "buildTarget": "employeeService:build:development" }, "pipeline": { - "browserTarget": "employeeService:build:pipeline" + "buildTarget": "employeeService:build:pipeline" } }, "defaultConfiguration": "development"