scraper/Jenkinsfile
2020-09-02 10:52:59 +02:00

14 lines
190 B
Groovy

pipeline {
agent any
stages {
stage('mocha') {
steps {
sh 'npm install --dev'
sh 'npm run test'
}
}
}
}