Skip to content
This repository was archived by the owner on May 22, 2024. It is now read-only.

Commit 87e50b6

Browse files
committed
Fix CI
1 parent bdffa1b commit 87e50b6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Jenkinsfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ pipeline {
1818
}
1919
stage('Build') {
2020
steps {
21-
sh 'docker run --rm -v $(pwd):/srv/app -w /srv/app jc21/node yarn --registry=$NPM_REGISTRY install'
21+
sh 'docker run --rm -v $(pwd):/srv/app -w /srv/app jc21/node npm --registry=$NPM_REGISTRY install'
2222
sh 'docker run --rm -v $(pwd):/srv/app -w /srv/app jc21/node gulp build'
2323
sh 'rm -rf node_modules'
24-
sh 'docker run --rm -v $(pwd):/srv/app -w /srv/app jc21/node yarn --registry=$NPM_REGISTRY install --prod'
24+
sh 'docker run --rm -v $(pwd):/srv/app -w /srv/app jc21/node npm --registry=$NPM_REGISTRY install --production'
2525
sh 'docker run --rm -v $(pwd):/data $DOCKER_CI_TOOLS node-prune'
2626
sh 'docker build -t $TEMP_IMAGE_NAME .'
2727

0 commit comments

Comments
 (0)