jenkins-scripts/unit/Jenkinsfile
2020-03-02 22:35:26 +03:00

6 lines
98 B
Groovy

stage('unit tests') {
steps {
echo 'runing tests...'
sh 'npm run test'
}
}