From e421975e3702d07c868dc04f8092458955940c56 Mon Sep 17 00:00:00 2001 From: jaipaljadeja Date: Thu, 11 Jul 2024 00:55:51 +0530 Subject: [PATCH] ci: update turbo.json to allow CI env variable --- turbo.json | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/turbo.json b/turbo.json index 24b2e45..fe83b4b 100644 --- a/turbo.json +++ b/turbo.json @@ -2,15 +2,12 @@ "$schema": "https://turborepo.org/schema.json", "tasks": { "build": { - "dependsOn": [ - "^build" - ], + "dependsOn": ["^build"], "outputs": ["dist/**"] }, "test": { - "dependsOn": [ - "build" - ] + "env": ["CI"], + "dependsOn": ["build"] }, "typecheck": { "cache": false