Loading...
Loading...
Jenkins automation server with pipelines and plugins. Use for CI/CD pipelines.
npx skill4agent add g1joshi/agent-skills jenkins// Jenkinsfile
pipeline {
agent { docker { image 'node:20' } }
stages {
stage('Build') {
steps {
sh 'npm ci'
sh 'npm run build'
}
}
}
}Jenkinsfile