BestNotes/Jenkinsfile
2019-11-19 17:30:21 +01:00

24 lines
490 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh "cd test"
echo 'Building..'
}
}
stage('Test') {
steps {
sh 'npm install'
sh 'npm test'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}