From aa3b080c05d9d1774cb4549c2a23999b0210ffac Mon Sep 17 00:00:00 2001 From: Groom Book CTO Date: Wed, 18 Mar 2026 02:44:04 +0000 Subject: [PATCH] fix: exclude e2e workspace from root pnpm test command The root `pnpm test` runs across all workspaces. The apps/e2e workspace requires Playwright browsers to be installed before tests can run, but the unit-test CI job does not install them. Exclude @groombook/e2e from the root test command so E2E tests only run in the dedicated e2e CI job. Co-Authored-By: Paperclip --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b984ebf..463a4ae 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "build": "pnpm -r build", "lint": "pnpm -r lint", "typecheck": "pnpm -r typecheck", - "test": "pnpm -r test", + "test": "pnpm -r --filter='!@groombook/e2e' test", "db:migrate": "pnpm --filter @groombook/db migrate", "db:seed": "pnpm --filter @groombook/db seed" },