Jenkinsfile 131 B

1234567891011
  1. pipeline {
  2. agent any
  3. stages {
  4. stage('') {
  5. steps {
  6. sh 'npm install && npm run build:pord'
  7. }
  8. }
  9. }
  10. }