BestNotes/Jenkinsfile

26 lines
546 B
Plaintext
Raw Normal View History

2019-11-19 17:19:25 +01:00
pipeline {
2019-11-19 17:31:57 +01:00
agent {
docker { image 'circleci/php:7.3' }
}
2019-11-19 17:19:25 +01:00
stages {
stage('Build') {
steps {
2019-11-19 17:22:16 +01:00
sh "cd test"
echo 'Building..'
2019-11-19 17:19:25 +01:00
}
}
stage('Test') {
steps {
2019-11-19 17:30:21 +01:00
sh 'npm install'
sh 'npm test'
2019-11-19 17:19:25 +01:00
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}