diff --git a/Jenkinsfile b/Jenkinsfile index 84530c2..8b2c8ca 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -1,28 +1,11 @@ -pipeline { - - agent any - - stages { - - stage('Install Dependencies') { - steps { - sh 'npm install' - } - } - - stage('Test') { - steps { - sh 'echo "testing application..."' +pipeline { + agent any + + stages { + stage('Hello') { + steps { + echo 'Hello World' + } } - } - - stage("Deploy application") { - steps { - sh 'echo "deploying application..."' - } - - } - - } - - } + } +}