From fb7b3dfce9d9a3849c29b4d2da73bbbf0b5120bb Mon Sep 17 00:00:00 2001 From: devopsstar143 <45394637+devopsstar143@users.noreply.github.com> Date: Tue, 11 Jan 2022 14:20:44 +0530 Subject: [PATCH] Update Jenkinsfile --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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..."' } }