diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 000000000..61726fdb7 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,21 @@ +pipeline { + agent any + + stages { + stage('Build') { + steps { + echo 'Building the app' + } + } + stage('Test'){ + steps { + echo 'Running test' + } + } + stage('Deploy'){ + steps { + echo 'Deploying App' + } + } +} +}