diff options
Diffstat (limited to '.github/workflows/playwright.yml')
-rw-r--r-- | .github/workflows/playwright.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.github/workflows/playwright.yml b/.github/workflows/playwright.yml index 8d4adca8..a0839fe3 100644 --- a/.github/workflows/playwright.yml +++ b/.github/workflows/playwright.yml @@ -16,12 +16,12 @@ jobs: - uses: actions/checkout@v4 - name: Install CJK fonts - uses: awalsh128/cache-apt-pkgs-action@1850ee53f6e706525805321a3f2f863dcf73c962 # v1.3.0 + uses: awalsh128/cache-apt-pkgs-action@44c33b32f808cdddd5ac0366d70595ed63661ed8 # v1.3.1 with: packages: fonts-ipafont-mincho execute_install_scripts: true - - uses: actions/setup-node@v3 + - uses: actions/setup-node@v4 with: cache: "npm" node-version-file: ".node-version" @@ -66,6 +66,8 @@ 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 |