Use Yarn in Jenkins Electron Builds (#1512)
This commit is contained in:
parent
7320413dab
commit
7da50ae52a
|
@ -14,7 +14,7 @@ pipeline {
|
|||
}
|
||||
steps {
|
||||
sh 'rm -rf node_modules'
|
||||
sh 'npm install'
|
||||
sh 'yarn'
|
||||
}
|
||||
}
|
||||
stage('Build') {
|
||||
|
|
|
@ -7,7 +7,7 @@ pipeline {
|
|||
stages {
|
||||
stage('Install') {
|
||||
steps {
|
||||
sh 'npm install'
|
||||
sh 'yarn'
|
||||
}
|
||||
}
|
||||
stage('Build') {
|
||||
|
|
|
@ -16,7 +16,7 @@ pipeline {
|
|||
}
|
||||
steps {
|
||||
sh 'rm -rf node_modules'
|
||||
sh 'npm install'
|
||||
sh 'yarn'
|
||||
}
|
||||
}
|
||||
stage('Build') {
|
||||
|
|
|
@ -18,7 +18,7 @@ pipeline {
|
|||
}
|
||||
steps {
|
||||
sh 'rm -rf node_modules'
|
||||
sh 'npm install'
|
||||
sh 'yarn'
|
||||
}
|
||||
}
|
||||
stage('Build') {
|
||||
|
|
Loading…
Reference in New Issue