Skip to main content
Short alias for monorepo:check. It runs the full verification gate across the packages and modules of your workspace: install, then build, then fmt, then lint, then test, in that order. Every option is forwarded untouched, so talos check behaves exactly like talos monorepo:check.

Usage

talos check [options]
This is equivalent to:
talos monorepo:check

Examples

Run the full gate across every package and module:
talos check
Scope the gate to specific modules and packages:
talos check --modules=billing,user --packages=billing,user
Stream plain logs instead of the interactive view (for CI):
talos check --logs
Force every task to re-run, ignoring the cache:
talos check --no-cache

Options

OptionDescriptionDefault
--packagesComma-separated package names to include (under packages/).All packages and modules
--modulesComma-separated module names to include (under modules/).All packages and modules
--logsStream plain log lines instead of the interactive view.false
--no-cacheSkip reading and writing the task cache.false
Like monorepo:check, check takes no --commands option — the command list is fixed to install,build,fmt,lint,test.
See the monorepo:check reference for the full details on execution order, caching, and output.