diff --git a/JenkinsFile b/JenkinsFile new file mode 100644 index 0000000..479058f --- /dev/null +++ b/JenkinsFile @@ -0,0 +1,20 @@ +pipeline { + agent any + stages { + stage('Build') { + steps { + echo 'Building...' + } + } + stage('Test') { + steps { + echo 'Testing...' + } + } + stage('Deploy') { + steps { + echo 'Deploying...' + } + } + } +}