diff --git a/alfa-client/apps/info/Jenkinsfile b/alfa-client/apps/info/Jenkinsfile index c8ce59fecfee8e20b04cc2cd668cc11a5c4ee637..a8104a6a9fdd615be40f462018d62fdc6d472777 100644 --- a/alfa-client/apps/info/Jenkinsfile +++ b/alfa-client/apps/info/Jenkinsfile @@ -36,11 +36,10 @@ pipeline { sh 'echo "//nexus.ozg-sh.de/:_auth=amVua2luczprTSFnNVUhMVQzNDZxWQ==" >> ~/.npmrc' sh 'npm cache verify' sh 'npm install' - sh 'nx run info:test' + sh 'npm run ci-test-info' sh 'npm run ci-build-info-by' sh 'npm run ci-build-info-sh' // TODO: Is Sonar necessary? - sh 'nx run info:test' } } } diff --git a/alfa-client/package.json b/alfa-client/package.json index baaf397925ec9ee638c3e4697710434baa59025a..9fe33b8a53aab908cbad51a53aa142d26df4425d 100644 --- a/alfa-client/package.json +++ b/alfa-client/package.json @@ -24,6 +24,7 @@ "ci-build-info-sh": "INPUT_TAGS=sh nx container info --configuration=sh", "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 && npx sonar-scanner", + "ci-test-info": "nx run info:test", "lint": "nx workspace-lint && nx lint", "affected:apps": "nx affected:apps", "affected:libs": "nx affected:libs",