Skip to content

Commit

Permalink
Jenkins: fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pavelbannov committed Oct 17, 2021
1 parent 158f610 commit 3f800cb
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ pipeline {
stages {
stage('Frontend') {
steps {
bat "yarn install --frozen-lockfile --force --verbose && yarn build"
bat "yarn install --frozen-lockfile && yarn build"
}
}
stage('Backend') {
Expand All @@ -43,7 +43,7 @@ pipeline {
stages {
stage('Components') {
steps {
sh "yarn install && yarn build && cd ${env.WORKSPACE}/packages/asc-web-components && yarn test:coverage --ci --reporters=default --reporters=jest-junit || true"
sh "yarn install --frozen-lockfile && yarn build && cd ${env.WORKSPACE}/packages/asc-web-components && yarn test:coverage --ci --reporters=default --reporters=jest-junit || true"
}
post {
success {
Expand Down Expand Up @@ -72,7 +72,7 @@ pipeline {
stages {
stage('Components') {
steps {
bat "yarn install && yarn build && cd ${env.WORKSPACE}\\packages\\asc-web-components && yarn test:coverage --ci --reporters=default --reporters=jest-junit || true"
bat "yarn install --frozen-lockfile && yarn build && cd ${env.WORKSPACE}\\packages\\asc-web-components && yarn test:coverage --ci --reporters=default --reporters=jest-junit || true"
}
post {
success {
Expand Down

0 comments on commit 3f800cb

Please sign in to comment.