From da7fc38b170846ec8006db2568fdae9e5a06e977 Mon Sep 17 00:00:00 2001 From: Sakshibobde <82197783+Sakshibobde@users.noreply.github.com> Date: Sun, 9 May 2021 20:28:47 +0530 Subject: [PATCH] hdj --- Jenkinsfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 84530c2..cedc04b 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -4,21 +4,21 @@ pipeline { stages { - stage('Install Dependencies') { + stage('build') { steps { - sh 'npm install' + echo 'build the application' } } stage('Test') { steps { - sh 'echo "testing application..."' + echo "testing application..." } } stage("Deploy application") { steps { - sh 'echo "deploying application..."' + echo "deploying application..." } }