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