Skip to content

Commit

Permalink
ci: all tests depend on builds being complete
Browse files Browse the repository at this point in the history
  • Loading branch information
goosewobbler committed Oct 12, 2024
1 parent 5d4646c commit 4a8e16f
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,25 @@
"dependsOn": ["zutron#build", "zutron#test:unit"]
},
"test:e2e:reducers": {
"dependsOn": ["zutron-example-reducers#build"]
"dependsOn": [
"zutron-example-reducers#build",
"zutron-example-separate-handlers#build",
"zutron-example-store-handlers#build"
]
},
"test:e2e:separate-handlers": {
"dependsOn": ["zutron-example-separate-handlers#build"]
"dependsOn": [
"zutron-example-reducers#build",
"zutron-example-separate-handlers#build",
"zutron-example-store-handlers#build"
]
},
"test:e2e:store-handlers": {
"dependsOn": ["zutron-example-store-handlers#build"]
"dependsOn": [
"zutron-example-reducers#build",
"zutron-example-separate-handlers#build",
"zutron-example-store-handlers#build"
]
},
"zutron-example-separate-handlers#build": {
"dependsOn": ["zutron-example-reducers#build"]
Expand Down

0 comments on commit 4a8e16f

Please sign in to comment.