BestNotes/Jenkinsfile
2019-11-19 17:58:42 +01:00

27 lines
625 B
Groovy

pipeline {
agent {docker { image 'circleci/node:10' }}
environment {
HOME = '.'
}
stages {
stage('Build') {
steps {
sh "npm install"
sh "apt-get install libnss3-dev"
}
}
stage('Test') {
steps {
sh "npm install webdriverio"
sh "npm test"
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}