diff --git a/turbo.json b/turbo.json index 2d4a634..270a6c4 100644 --- a/turbo.json +++ b/turbo.json @@ -39,31 +39,33 @@ }, "test:e2e:shard1": { "cache": true, - "dependsOn": ["build"], "inputs": ["src/**/*"], "outputs": ["playwright-report/**", "test-results/**"] }, "test:e2e:shard2": { "cache": true, - "dependsOn": ["build"], "inputs": ["src/**/*"], "outputs": ["playwright-report/**", "test-results/**"] }, "test:e2e:shard3": { "cache": true, - "dependsOn": ["build"], "inputs": ["src/**/*"], "outputs": ["playwright-report/**", "test-results/**"] }, "test:e2e:shard4": { "cache": true, - "dependsOn": ["build"], "inputs": ["src/**/*"], "outputs": ["playwright-report/**", "test-results/**"] }, "test:e2e:all": { "cache": true, - "dependsOn": ["test:e2e:shard1", "test:e2e:shard2", "test:e2e:shard3", "test:e2e:shard4"], + "dependsOn": [ + "^build", + "test:e2e:shard1", + "test:e2e:shard2", + "test:e2e:shard3", + "test:e2e:shard4" + ], "inputs": ["src/**/*"], "outputs": ["playwright-report/**", "test-results/**"] }