Add of Jenknis File and setup repo

This commit is contained in:
Raphix
2023-03-18 18:20:17 +01:00
parent 2314bd5bce
commit f4779190b1
3 changed files with 22 additions and 6 deletions

16
Jenkinsfile vendored Normal file
View File

@ -0,0 +1,16 @@
pipeline {
agent any
stages {
stage('Testing Express Node JS') {
steps {
echo "Testing Neutral"
}
}
stage('Deploy Neutral') {
steps {
echo "Deploying Neutral"
}
}
}
}