neutral-old/Jenkinsfile

16 lines
291 B
Plaintext
Raw Normal View History

2023-03-18 17:20:17 +00:00
pipeline {
agent any
stages {
stage('Testing Express Node JS') {
steps {
echo "Testing Neutral"
}
}
stage('Deploy Neutral') {
steps {
echo "Deploying Neutral"
}
}
}
}