From 037eb898e31c4c77c213f31df65db86dc2acdc18 Mon Sep 17 00:00:00 2001 From: "David H. Mason" Date: Mon, 17 Jun 2024 15:11:09 -0400 Subject: [PATCH] move playwright install after package install (#290) --- .github/workflows/e2e-tests-reviews.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/e2e-tests-reviews.yml b/.github/workflows/e2e-tests-reviews.yml index 6e387394..344de9b2 100644 --- a/.github/workflows/e2e-tests-reviews.yml +++ b/.github/workflows/e2e-tests-reviews.yml @@ -50,16 +50,14 @@ jobs: run: | npx -y wait-on --log --timeout 30000 http-get://localhost:4200 - - name: playwright install - run: | - npx playwright install-deps - npx playwright install - - name: Run tests continue-on-error: true run: | cd haibun-e2e-tests npm ci + npx playwright install-deps + npx playwright install + HAIBUN_O_WEBPLAYWRIGHT_HEADLESS=true npm run test - name: Publish