BestNotes/Jenkinsfile

24 lines
538 B
Plaintext
Raw Normal View History

2019-11-19 17:19:25 +01:00
pipeline {
agent any
stages {
stage('Build') {
steps {
sh "cd tests"
sh "npm install"
}
}
stage('Test') {
steps {
echo 'Testing..'
sh ''./node_modules/.bin/wdio run ./test/config/base.conf.js'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}