From 9960e20651ea1d50eb2ec84783cf47d3c8afe571 Mon Sep 17 00:00:00 2001 From: VitoAlbano Date: Thu, 13 Mar 2025 23:49:51 +0000 Subject: [PATCH] [AAE-30877] - And again --- .github/workflows/pull-request.yml | 7 +------ lib/core/karma.conf.js | 2 +- 2 files changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index ada5beb1a9..9c66a294d4 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -182,12 +182,7 @@ jobs: # max-parallel: 4 matrix: unit-tests: - - name: js-api - - name: content-services - name: core - - name: insights - - name: process-services - - name: process-services-cloud steps: - name: Checkout repository uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 @@ -197,7 +192,7 @@ jobs: - uses: ./.github/actions/download-node-modules-and-artifacts - name: Run unit tests run: | - xvfb-run --auto-servernum npx nx run ${{ matrix.unit-tests.name}}:test --configuration=ci + xvfb-run --auto-servernum npx nx run ${{ matrix.unit-tests.name}}:test --verbose lint: # long timeout required when cache has to be recreated diff --git a/lib/core/karma.conf.js b/lib/core/karma.conf.js index 33114fa076..574abb3a76 100644 --- a/lib/core/karma.conf.js +++ b/lib/core/karma.conf.js @@ -119,7 +119,7 @@ module.exports = function (config) { logLevel: constants.LOG_INFO, autoWatch: true, browsers: process.env.CI ? ['ChromeHeadlessCI'] : ['ChromeHeadless'], - singleRun: process.env.CI ? true : false + singleRun: false }); process.env.TZ = 'UTC'; };