From 5439c7ea2f2a76fe5f2311b9cd9e05314cb94e49 Mon Sep 17 00:00:00 2001 From: silverwind Date: Sun, 15 Feb 2026 15:07:07 +0100 Subject: [PATCH] skip playwright --with-deps on actions --- Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e619e06096..05d0b1311d 100644 --- a/Makefile +++ b/Makefile @@ -555,7 +555,8 @@ test-mssql-migration: migrations.mssql.test migrations.individual.mssql.test .PHONY: playwright playwright: deps-frontend - @$(NODE_VARS) pnpm exec playwright install --with-deps chromium $(PLAYWRIGHT_FLAGS) + @# on GitHub Actions CI, playwright system deps are pre-installed + @$(NODE_VARS) pnpm exec playwright install $(if $(CI),,--with-deps) chromium $(PLAYWRIGHT_FLAGS) .PHONY: test-e2e test-e2e: playwright