diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..4a3c872 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,11 @@ +node { + + def app + + stage('Clone repository') { + /* Let's make sure we have the repository cloned to our workspace */ + + checkout scm + } + +} \ No newline at end of file