diff options
| author | Luke Parker <[email protected]> | 2026-02-24 09:13:31 +1000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2026-02-24 09:13:31 +1000 |
| commit | ad5f0816a33d323f2a7e6a6228136fa6a6c4b056 (patch) | |
| tree | 6225e29d20c9751870b983f5680d86a5785ed5cc | |
| parent | 24c63914bf9ff46c3869f35e3cef026aa9f33b61 (diff) | |
| download | opencode-ad5f0816a33d323f2a7e6a6228136fa6a6c4b056.tar.gz opencode-ad5f0816a33d323f2a7e6a6228136fa6a6c4b056.zip | |
fix(cicd): flakey typecheck (#14828)
| -rw-r--r-- | turbo.json | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/turbo.json b/turbo.json index f06ddb0e8..ba3d01d36 100644 --- a/turbo.json +++ b/turbo.json @@ -3,7 +3,9 @@ "globalEnv": ["CI", "OPENCODE_DISABLE_SHARE"], "globalPassThroughEnv": ["CI", "OPENCODE_DISABLE_SHARE"], "tasks": { - "typecheck": {}, + "typecheck": { + "dependsOn": ["^build"] + }, "build": { "dependsOn": ["^build"], "outputs": ["dist/**"] |
