Tasks
jnc includes a cross-platform task runner. Define tasks in your manifest and run them withjnc run. Tasks execute inside the workspace environment with all dependencies available.
Defining tasks
Simple tasks
Tasks with options
Use the table format for more control:Running tasks
Task dependencies
Tasks can depend on other tasks. Dependencies run first, in the correct order:jnc run ci will execute lint and test (and their dependencies) before ci.