adding jenkinsfile

This commit is contained in:
Michael Scalzetti 2023-04-17 16:19:57 -04:00
parent d1d7de632e
commit df05f085a4

22
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,22 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}