diff --git a/Jenkinsfile b/Jenkinsfile deleted file mode 100644 index 84530c2..0000000 --- a/Jenkinsfile +++ /dev/null @@ -1,28 +0,0 @@ -pipeline { - - agent any - - stages { - - stage('Install Dependencies') { - steps { - sh 'npm install' - } - } - - stage('Test') { - steps { - sh 'echo "testing application..."' - } - } - - stage("Deploy application") { - steps { - sh 'echo "deploying application..."' - } - - } - - } - - }