André Silva Paulino

Adicionando mais um estágio no pipeline

... ... @@ -3,19 +3,18 @@ pipeline {
stages {
stage('Build') {
steps {
sh 'npm install'
sh 'npm run build'
echo "teste de build"
}
}
stage('Test') {
steps {
sh 'npm test'
echo "teste de test"
}
}
}
stage('Deploy') {
steps {
sh 'npm deploy'
echo "teste de deploy"
}
}
}
}
... ...