scraper/Jenkinsfile

14 lines
190 B
Groovy

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