Configuration Filesadvanced

CI/CD Job Config JSON Example

A pipeline job definition with steps, environment, and artifact output.

Real-world use case: Use this for pipeline docs, internal automation, or deployment orchestration examples.
1{
2 "jobName": "deploy-production",
3 "triggers": [
4 "manual",
5 "tag_push"
6 ],
7 "environment": "production",
8 "steps": [
9 {
10 "id": "install",
11 "run": "npm ci"
12 },
13 {

Where this shape shows up in production

CI/CD pipelines
Release docs
Automation systems

Related examples