Toggle navigation
Toggle navigation
This project
Loading...
Sign in
André Silva Paulino
/
CICD-teste
Go to a project
Toggle navigation
Projects
Groups
Snippets
Help
Toggle navigation pinning
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
André Silva Paulino
2023-03-05 13:08:47 -0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
06a5a65970a1af354bf838dac715bb4a47ee8b73
06a5a659
1 parent
bfba487d
Adicionando mais um estágio no pipeline
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
5 deletions
jenkins/Jenkinsfile
jenkins/Jenkinsfile
View file @
06a5a65
...
...
@@ -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"
}
}
}
}
...
...
Please
register
or
login
to post a comment