From 46979cbde48454703d7f1f66117a404a769a585b Mon Sep 17 00:00:00 2001 From: Arthur Fontaine <0arthur.fontaine@gmail.com> Date: Sun, 14 May 2023 22:54:29 +0200 Subject: [PATCH] chore: fix turbo pipeline --- turbo.json | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/turbo.json b/turbo.json index 3eb2d61..c6027e2 100644 --- a/turbo.json +++ b/turbo.json @@ -6,7 +6,8 @@ "outputs": ["dist/**"] }, "lint": { - "outputs": [] + "outputs": [], + "dependsOn": ["build"] }, "lint:fix": { "outputs": [] @@ -15,7 +16,8 @@ "cache": false }, "test": { - "outputs": [] + "outputs": [], + "dependsOn": ["lint", "build"] } } }