mirror of
https://github.com/mas-cli/mas
synced 2025-02-16 12:38:30 +00:00
😃 Add emoji to pipeline stages
This commit is contained in:
parent
2d6e4b059f
commit
52b25b716f
1 changed files with 4 additions and 4 deletions
8
Jenkinsfile
vendored
8
Jenkinsfile
vendored
|
@ -29,7 +29,7 @@ pipeline {
|
|||
}
|
||||
|
||||
stages {
|
||||
stage('Assemble') {
|
||||
stage('🏗️ Assemble') {
|
||||
steps {
|
||||
ansiColor('xterm') {
|
||||
sh 'script/bootstrap'
|
||||
|
@ -39,21 +39,21 @@ pipeline {
|
|||
}
|
||||
}
|
||||
}
|
||||
stage('Test') {
|
||||
stage('✅ Test') {
|
||||
steps {
|
||||
ansiColor('xterm') {
|
||||
sh 'script/test'
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Lint') {
|
||||
stage('🚨 Lint') {
|
||||
steps {
|
||||
ansiColor('xterm') {
|
||||
sh 'script/lint'
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Danger') {
|
||||
stage('⚠️ Danger') {
|
||||
steps {
|
||||
ansiColor('xterm') {
|
||||
sh 'script/danger'
|
||||
|
|
Loading…
Add table
Reference in a new issue