Task dependencies Dependencies run in parallel, so dependencies of a task should not depend one another. If you want to force tasks to run serially, take a look at the Calling Another Task section below.
You may have tasks that depend on others. Just pointing them on deps will make them run automatically before running the parent task:
version: ‘3’
tasks: build: deps: [assets] cmds: - go build -v -i main.go
assets: cmds: - esbuild —bundle —minify css/index.css > public/bundle.css