scraper/Jenkinsfile

14 lines
190 B
Plaintext
Raw Normal View History

2020-09-02 10:44:33 +02:00
pipeline {
agent any
stages {
stage('mocha') {
steps {
sh 'npm install --dev'
sh 'npm run test'
}
}
}
}