From e5b5bdafa3833b66974ef628e301c585df3161c4 Mon Sep 17 00:00:00 2001 From: silverwind Date: Sun, 15 Feb 2026 15:08:41 +0100 Subject: [PATCH] skip installing playwright system deps on github actions --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 05d0b1311d..91bb7b0bbe 100644 --- a/Makefile +++ b/Makefile @@ -555,8 +555,8 @@ test-mssql-migration: migrations.mssql.test migrations.individual.mssql.test .PHONY: playwright playwright: deps-frontend - @# on GitHub Actions CI, playwright system deps are pre-installed - @$(NODE_VARS) pnpm exec playwright install $(if $(CI),,--with-deps) chromium $(PLAYWRIGHT_FLAGS) + @# on GitHub Actions VMs, playwright's system deps are pre-installed + @$(NODE_VARS) pnpm exec playwright install $(if $(GITHUB_ACTIONS),,--with-deps) chromium $(PLAYWRIGHT_FLAGS) .PHONY: test-e2e test-e2e: playwright