Jenkins file testing

This commit is contained in:
Dawid Majsnerowski 2019-11-19 17:35:22 +01:00
parent 7c656e934b
commit 146b23990e

4
Jenkinsfile vendored
View File

@ -12,8 +12,8 @@
} }
stage('Test') { stage('Test') {
steps { steps {
sh 'npm install' sh "/usr/local/bin/npm install"
sh 'npm test' sh "/usr/local/bin/npm test"
} }
} }
stage('Deploy') { stage('Deploy') {