Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 375 Bytes

readme.md

File metadata and controls

28 lines (22 loc) · 375 Bytes

pipeline { agent any

tools {nodejs "node"}

stages {

stage('Git') {
  steps {
    git 'https://github.com/****/****'
  }
}
 
stage('Build') {
  steps {
    sh 'npm install'
     sh '<<Build Command>>'
  }
}  

        
stage('Test') {
  steps {
    sh 'node test'
  }
}

} }