From 750039d3e3cb3ae25b173c0752a1a8db310ba23b Mon Sep 17 00:00:00 2001
From: Tobias Bruns <kontakt@tobias-bruns.de>
Date: Fri, 17 Jan 2025 15:53:30 +0100
Subject: [PATCH] OZG-6238 remove network concurrency

---
 alfa-client/apps/alfa/Jenkinsfile | 2 +-
 alfa-client/package.json          | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/alfa-client/apps/alfa/Jenkinsfile b/alfa-client/apps/alfa/Jenkinsfile
index 0dde2edb6c..1464cec669 100644
--- a/alfa-client/apps/alfa/Jenkinsfile
+++ b/alfa-client/apps/alfa/Jenkinsfile
@@ -78,7 +78,7 @@ pipeline {
                         sh 'node --version'
 
                         dir('alfa-client') {
-                            sh 'pnpm install  --frozen-lockfile --network-concurrency=8'
+                            sh 'pnpm install  --frozen-lockfile'
 
                             if (isMainBranch()) {
                                 withSonarQubeEnv('sonarqube-ozg-sh'){
diff --git a/alfa-client/package.json b/alfa-client/package.json
index 1f72c55a68..56791618d0 100644
--- a/alfa-client/package.json
+++ b/alfa-client/package.json
@@ -20,8 +20,8 @@
     "ci-build-admin": "nx container admin",
     "ci-prodBuild": "nx run alfa:build --outputHashing=all --configuration production",
     "ci-prodBuild-admin": "nx container admin",
-    "ci-test": "nx run-many --target=test --parallel -- --runInBand",
-    "ci-sonar": "nx run-many --target=test --parallel -- --runInBand --codeCoverage --coverageReporters=lcov --testResultsProcessor=jest-sonar-reporter && pnpm exec sonar-scanner",
+    "ci-test": "nx run-many --target=test --parallel 20 -- --runInBand",
+    "ci-sonar": "nx run-many --target=test --parallel 20 -- --runInBand --codeCoverage --coverageReporters=lcov --testResultsProcessor=jest-sonar-reporter && pnpm exec sonar-scanner",
     "lint": "nx workspace-lint && nx lint",
     "affected:apps": "nx affected:apps",
     "affected:libs": "nx affected:libs",
-- 
GitLab