diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..3b30297 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,20 @@ +pipeline { + agent any + stages { + stage('Build') { + steps { + echo 'buiding app' + } + } + stage('Test') { + steps { + echo 'testing app' + } + } + stage('Deploy') { + steps { + echo 'deploying app' + } + } + } +}