From 56bfce8ae37a36d4e59c9a85f75a01b45c1b12a7 Mon Sep 17 00:00:00 2001 From: Darius Cepulis Date: Wed, 18 Feb 2026 08:03:00 -0600 Subject: [PATCH] chore(root): add dependency graph to turbo dev and test tasks (#540) --- .github/workflows/website-tests.yml | 2 +- turbo.json | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/website-tests.yml b/.github/workflows/website-tests.yml index c6600c43..ee847bca 100644 --- a/.github/workflows/website-tests.yml +++ b/.github/workflows/website-tests.yml @@ -39,4 +39,4 @@ jobs: ${{ runner.os }}-turbo- - name: Run website tests - run: pnpm --filter site test + run: turbo run test --filter=site diff --git a/turbo.json b/turbo.json index c0690f15..9c58a9e6 100644 --- a/turbo.json +++ b/turbo.json @@ -8,6 +8,7 @@ "outputs": ["dist/**", ".netlify/**"] }, "dev": { + "dependsOn": ["^build"], "cache": false, "persistent": true, "interactive": false @@ -16,6 +17,7 @@ "cache": false }, "test": { + "dependsOn": ["^build"], "outputs": [] }, "lint": {