jenkins-scripts/unit/Jenkinsfile

6 lines
98 B
Plaintext
Raw Normal View History

2020-03-02 22:35:26 +03:00
stage('unit tests') {
steps {
echo 'runing tests...'
sh 'npm run test'
}
}