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": {