Skip to content

Commit

Permalink
[#43] πŸ”¨ Execute build script before test script
Browse files Browse the repository at this point in the history
  • Loading branch information
yongholeeme committed Dec 3, 2024
1 parent e894717 commit 8c382ec
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions turbo.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
"test": {"cache": false},
"test:watch": {"cache": false},
"test": {"cache": false, "dependsOn": ["^build"]},
"test:watch": {"cache": false, "dependsOn": ["^build"]},
"build": {"cache": false, "dependsOn": ["^build"]}
}
}

0 comments on commit 8c382ec

Please sign in to comment.