From 9adcc4ac9151d6833c842d4acb7b2413e0143c54 Mon Sep 17 00:00:00 2001 From: Jarek Radosz Date: Mon, 24 Jun 2024 01:14:26 +0200 Subject: [PATCH] DEV: Do not run theme QUnit in parallel (#27576) Running in parallel seems to cause (unexplained so far) timeouts --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1f1eb046d3d..abc01c48299 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -237,8 +237,8 @@ jobs: - name: Theme QUnit if: matrix.build_type == 'frontend' && matrix.target == 'themes' - run: DISCOURSE_DEV_DB=discourse_test QUNIT_PARALLEL=3 bin/rake themes:qunit_all_official - timeout-minutes: 15 + run: DISCOURSE_DEV_DB=discourse_test bin/rake themes:qunit_all_official + timeout-minutes: 10 - uses: actions/upload-artifact@v4 if: always() && matrix.build_type == 'frontend' && matrix.target == 'plugins'