Skip to content
Snippets Groups Projects
Commit 8dfb2421 authored by OZGCloud's avatar OZGCloud
Browse files

OZG-6238 fix ERR_SOCKET_TIMEOUT (3)

parent 7b123abc
No related branches found
No related tags found
1 merge request!1OZG-6238 NPM durch PNPM ersetzen
...@@ -84,7 +84,7 @@ pipeline { ...@@ -84,7 +84,7 @@ pipeline {
sh 'node --version' sh 'node --version'
dir('alfa-client') { dir('alfa-client') {
sh 'pnpm install --frozen-lockfile --network-concurrency 8' sh 'pnpm install --frozen-lockfile --network-concurrency=8'
if (isMasterBranch()) { if (isMasterBranch()) {
withSonarQubeEnv('sonarqube-ozg-sh'){ withSonarQubeEnv('sonarqube-ozg-sh'){
......
...@@ -64,7 +64,7 @@ pipeline { ...@@ -64,7 +64,7 @@ pipeline {
withNPM(npmrcConfig: 'npm-nexus-auth') { withNPM(npmrcConfig: 'npm-nexus-auth') {
dir('alfa-client') { dir('alfa-client') {
sh 'pnpm install --frozen-lockfile --network-concurrency 8' sh 'pnpm install --frozen-lockfile --network-concurrency=8'
if (isReleaseBranch()) { if (isReleaseBranch()) {
sh 'pnpm run ci-prodBuild-admin' sh 'pnpm run ci-prodBuild-admin'
......
...@@ -31,4 +31,4 @@ COPY . . ...@@ -31,4 +31,4 @@ COPY . .
RUN corepack enable && corepack prepare pnpm --activate RUN corepack enable && corepack prepare pnpm --activate
RUN pnpm install --frozen-lockfile --network-concurrency 8 --registry=https://nexus.ozg-sh.de/repository/npm-proxy RUN pnpm install --frozen-lockfile --network-concurrency=8 --registry=https://nexus.ozg-sh.de/repository/npm-proxy
...@@ -228,7 +228,7 @@ pipeline { ...@@ -228,7 +228,7 @@ pipeline {
withNPM(npmrcConfig: 'npm-nexus-auth') { withNPM(npmrcConfig: 'npm-nexus-auth') {
sh 'pnpm --version' sh 'pnpm --version'
dir('alfa-client') { dir('alfa-client') {
sh 'pnpm install --frozen-lockfile --network-concurrency 8' sh 'pnpm install --frozen-lockfile --network-concurrency=8'
sh "pnpm run cypress:install" sh "pnpm run cypress:install"
} }
} }
......
...@@ -177,7 +177,7 @@ pipeline { ...@@ -177,7 +177,7 @@ pipeline {
withNPM(npmrcConfig: 'npm-nexus-auth') { withNPM(npmrcConfig: 'npm-nexus-auth') {
sh 'pnpm --version' sh 'pnpm --version'
dir('alfa-client') { dir('alfa-client') {
sh 'pnpm install --frozen-lockfile --network-concurrency 8' sh 'pnpm install --frozen-lockfile --network-concurrency=8'
sh "pnpm run cypress:install" sh "pnpm run cypress:install"
} }
} }
......
...@@ -64,7 +64,7 @@ pipeline { ...@@ -64,7 +64,7 @@ pipeline {
withNPM(npmrcConfig: 'npm-nexus-auth') { withNPM(npmrcConfig: 'npm-nexus-auth') {
dir('alfa-client') { dir('alfa-client') {
sh 'pnpm install --frozen-lockfile --network-concurrency 8' sh 'pnpm install --frozen-lockfile --network-concurrency=8'
sh 'pnpm run ci-storybook' sh 'pnpm run ci-storybook'
} }
} }
......
...@@ -36,7 +36,7 @@ pipeline { ...@@ -36,7 +36,7 @@ pipeline {
FAILED_STAGE = env.STAGE_NAME FAILED_STAGE = env.STAGE_NAME
dir('alfa-client') { dir('alfa-client') {
withNPM(npmrcConfig: 'npm-nexus-auth') { withNPM(npmrcConfig: 'npm-nexus-auth') {
sh 'pnpm install --frozen-lockfile --network-concurrency 8' sh 'pnpm install --frozen-lockfile --network-concurrency=8'
sh 'npx nx run info:test' sh 'npx nx run info:test'
sh 'npx nx run info:test -- --runInBand --codeCoverage --coverageReporters=lcov --testResultsProcessor=jest-sonar-reporter && npx sonar-scanner' sh 'npx nx run info:test -- --runInBand --codeCoverage --coverageReporters=lcov --testResultsProcessor=jest-sonar-reporter && npx sonar-scanner'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment