From f87f6eded891fdc6d3cd186c9485f4929acd2142 Mon Sep 17 00:00:00 2001 From: Marcus Felling Date: Wed, 14 Sep 2022 11:38:53 -0500 Subject: [PATCH] run as root for firefox bug workaround --- .github/workflows/podcast-web.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/podcast-web.yml b/.github/workflows/podcast-web.yml index b146867..3c9b585 100644 --- a/.github/workflows/podcast-web.yml +++ b/.github/workflows/podcast-web.yml @@ -141,7 +141,8 @@ jobs: run: npm ci - name: Run Playwright tests - run: npx playwright test + run: | + HOME=/root npx playwright test - name: Create test summary uses: test-summary/action@dist