From 2ee45c699a57897e670f687f548009106d2d1645 Mon Sep 17 00:00:00 2001 From: Jan Klattenhoff Date: Fri, 17 Jan 2025 10:47:32 +0100 Subject: [PATCH] build: update Angular CLI before building project --- .github/workflows/playwright.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 13c5ae1..ce2471a 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -46,7 +46,9 @@ jobs: # Build the Angular project - name: Build Angular Project - run: ng build --configuration=pipeline + run: | + npm install -g @angular/cli + ng build --configuration=pipeline # Start Angular development server - name: Start Angular Development Server in Background