Possible docs typo on "Using Turborepo with GitHub Actions" #1307
-
On the following page for GitHub Actions (See: https://turborepo.org/docs/ci/github-actions). The following turbo.json is provided as an example. {
"$schema": "https://turborepo.org/schema.json",
"baseBranch": "origin/main",
"pipeline": {
"build": {
"dependsOn": ["^build"],
"outputs": []
},
"test": {
"dependsOn": ["^build"],
"outputs": []
},
}
}
I don't see it addressed anywhere so everything leads me to believe it's a typo, but I am also a complete novice to turborepo so I wanted to ask before I made a PR. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Everything is fine. The '^' mean that to build a package, its dependencies need to be built before. |
Beta Was this translation helpful? Give feedback.
Everything is fine. The '^' mean that to build a package, its dependencies need to be built before.
(https://turborepo.org/docs/core-concepts/pipelines#topological-dependency)