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

24 lines
486 B
Groovy

pipeline {
agent {
docker { image 'circleci/node:10' }
}
stages {
stage('Build') {
steps {
sh "npm install"
}
}
stage('Test') {
steps {
sh "npm test"
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}