From 6e7e931e4ee5e06448b129624726fa63275ea2d0 Mon Sep 17 00:00:00 2001 From: gnezim Date: Mon, 27 Apr 2026 14:08:06 +0300 Subject: [PATCH] ci: install playwright OS deps with --with-deps Chromium needs libnspr4/libnss/etc; the runner image doesn't include them. The runner runs as root in the container, so apt-installing via --with-deps should work. If permissions block, switch the job container to mcr.microsoft.com/playwright instead. --- .gitea/workflows/ci-deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/ci-deploy.yml b/.gitea/workflows/ci-deploy.yml index dbfda68a..7e23bb16 100644 --- a/.gitea/workflows/ci-deploy.yml +++ b/.gitea/workflows/ci-deploy.yml @@ -93,7 +93,7 @@ jobs: - name: Install Playwright browsers id: playwright_install - run: pnpm exec playwright install chromium + run: pnpm exec playwright install --with-deps chromium - name: Run Playwright e2e id: e2e