scraper/Jenkinsfile
Simon Vieille 458593e454
All checks were successful
Gitnet/scraper/pipeline/head This commit looks good
add tests
2020-09-02 10:49:00 +02:00

15 lines
223 B
Groovy

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