16 lines
291 B
Plaintext
16 lines
291 B
Plaintext
|
pipeline {
|
||
|
agent any
|
||
|
|
||
|
stages {
|
||
|
stage('Testing Express Node JS') {
|
||
|
steps {
|
||
|
echo "Testing Neutral"
|
||
|
}
|
||
|
}
|
||
|
stage('Deploy Neutral') {
|
||
|
steps {
|
||
|
echo "Deploying Neutral"
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|