Skip to content

Commit

Permalink
Use Yarn in Jenkins Electron Builds (#1512)
Browse files Browse the repository at this point in the history
  • Loading branch information
skubakdj authored and dternyak committed Apr 13, 2018
1 parent 7320413 commit 7da50ae
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion jenkins/Jenkinsfile.darwin
Expand Up @@ -14,7 +14,7 @@ pipeline {
}
steps {
sh 'rm -rf node_modules'
sh 'npm install'
sh 'yarn'
}
}
stage('Build') {
Expand Down
2 changes: 1 addition & 1 deletion jenkins/Jenkinsfile.darwin.ci
Expand Up @@ -7,7 +7,7 @@ pipeline {
stages {
stage('Install') {
steps {
sh 'npm install'
sh 'yarn'
}
}
stage('Build') {
Expand Down
2 changes: 1 addition & 1 deletion jenkins/Jenkinsfile.linux.develop
Expand Up @@ -16,7 +16,7 @@ pipeline {
}
steps {
sh 'rm -rf node_modules'
sh 'npm install'
sh 'yarn'
}
}
stage('Build') {
Expand Down
2 changes: 1 addition & 1 deletion jenkins/Jenkinsfile.linux.master
Expand Up @@ -18,7 +18,7 @@ pipeline {
}
steps {
sh 'rm -rf node_modules'
sh 'npm install'
sh 'yarn'
}
}
stage('Build') {
Expand Down

0 comments on commit 7da50ae

Please sign in to comment.