主题
Jenkins 是开源的自动化服务器。
pipeline { agent any stages { stage('Build') { steps { sh 'npm install' sh 'npm run build' } } stage('Test') { steps { sh 'npm test' } } stage('Deploy') { steps { sh 'npm run deploy' } } } }