From ff172934d07aa7336a570c927e80388ba013abd3 Mon Sep 17 00:00:00 2001 From: Matthew Valancy Date: Sun, 7 Sep 2025 20:28:57 -0700 Subject: [PATCH] Fix production CI by separating unit tests from E2E tests - Remove E2E tests from main 'test' command to fix GitHub Actions CI - Create 'test:production' command for full testing including E2E - E2E tests require running infrastructure (Neo4j, API server) - GitHub Actions CI environment cannot provide full stack - Future: Use custom runners with infrastructure for E2E testing - Resolves production deployment CI failure --- package.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 5f34d632..58592b2f 100644 --- a/package.json +++ b/package.json @@ -11,7 +11,8 @@ "dev": "turbo run dev", "dev:mcp": "npm run dev:start -w @graphdone/mcp-server", "build": "turbo run build", - "test": "turbo run test && npm run test:e2e:core", + "test": "turbo run test", + "test:production": "turbo run test && npm run test:e2e:core", "test:unit": "turbo run test", "test:coverage": "turbo run test:coverage", "test:e2e": "playwright test",