Skip to content

Commit

Permalink
ci: build dependencies before running typecheck
Browse files Browse the repository at this point in the history
We need to make sure dependencies are rebuilt before running typecheck
so usage is in sync with dependencies.
  • Loading branch information
Sekhmet committed Feb 21, 2024
1 parent 2653413 commit c76f035
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,9 @@
"dependsOn": ["^build"]
},
"lint": {},
"typecheck": {},
"typecheck": {
"dependsOn": ["^build"]
},
"test": {
"dependsOn": ["^build"]
},
Expand Down

0 comments on commit c76f035

Please sign in to comment.