diff --git a/Jenkinsfile b/Jenkinsfile index 84530c2..a1b8bbe 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,19 +6,19 @@ pipeline { stage('Install Dependencies') { steps { - sh 'npm install' + bat 'npm install' } } stage('Test') { steps { - sh 'echo "testing application..."' + bat 'echo "testing application..."' } } stage("Deploy application") { steps { - sh 'echo "deploying application..."' + bat 'echo "deploying application..."' } }