diff options
author | Darius Jahandarie <djahandarie@gmail.com> | 2023-11-02 23:07:14 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-11-02 23:07:14 +0000 |
commit | b64f51c3b13a46af4dd7f1e43048ac19c781ca7b (patch) | |
tree | ec87df97e3008a3f7c1baa522e69d2b8d778ed43 /.github | |
parent | 3d2aaaeaa7a4ca3c3fe09485b3c881c168ba8a97 (diff) | |
parent | 9da441030ee7e6e1c71d30a4e1edb7c02f8da1e1 (diff) |
Merge pull request #303 from jbukl/pw-gha-env-fix
Playwright GH action env push fix
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/playwright.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index a0839fe3..3cd8c3b2 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -9,6 +9,8 @@ jobs: playwright: timeout-minutes: 60 runs-on: ubuntu-latest + env: + PW_EXPERIMENTAL_SERVICE_WORKER_NETWORK_EVENTS: 1 steps: - name: Remove all fonts run: rm -rf /usr/share/fonts @@ -66,8 +68,6 @@ jobs: - name: "[PR] Generate new screenshots & compare against master" id: playwright - env: - PW_EXPERIMENTAL_SERVICE_WORKER_NETWORK_EVENTS: 1 run: | npx playwright test 2>&1 | tee ./playwright-output || true continue-on-error: true |