diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 00000000..e47377cf --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,29 @@ +pipeline { + agent any + + stages { + stage('Build') { + steps { + echo 'Build App' + } + } + + stage('Test') { + steps { + echo 'Test App' + } + } + + stage('Deploy') { + steps { + echo 'Deploy App' + } + + } + + + + } + + +}