BestNotes/Jenkinsfile
2019-11-19 17:31:57 +01:00

26 lines
546 B
Groovy

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