From f3611287c581ba0fd3ac30c351df646c3e881879 Mon Sep 17 00:00:00 2001 From: "David H. Mason" Date: Mon, 17 Jun 2024 15:10:23 -0400 Subject: [PATCH] move playwright install after package install --- .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