From 6929177bfd52d170ecc307df6b0ae769e3d3edaa Mon Sep 17 00:00:00 2001 From: Guido de Rooij Date: Tue, 26 Mar 2024 18:05:41 +0100 Subject: [PATCH] Use separately installed wait-on --- .github/workflows/build.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 95565d4..d7cfa15 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -43,7 +43,10 @@ jobs: run: npm run build:build - name: Start Application - run: npm run start:app & wait-on http://localhost:4200 + run: | + npm install -g wait-on + npm run start:app + wait-on http://localhost:4200 - name: E2E run: npm run cypress:run