diff --git a/Jenkinsfile b/Jenkinsfile index db8d3f5..b839810 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,23 +6,23 @@ pipeline { stage('Install Dependencies') { steps { - sh 'npm install' + echo "build the application..." } } stage('Test') { steps { - sh 'echo "testing application..."' + echo "testing application..." } } stage("Deploy nodejs application") { steps { - sh 'echo "deploying application..."' + echo "deploy application..." } } } - } \ No newline at end of file + }