From b81e9482617f81a15e2341338b9d2cd835c2a758 Mon Sep 17 00:00:00 2001 From: Maxime Robert Date: Thu, 3 Oct 2024 12:09:26 +0200 Subject: [PATCH] Story #12116: backport GitHub Actions: disable randomly failing tests --- .github/workflows/build-and-test.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 368f09902fa..2d57327e484 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -54,9 +54,10 @@ jobs: - name: Build ui-frontend apps working-directory: ui/ui-frontend run: npm run build:allModules - - name: Run tests on ui-frontend apps - working-directory: ui/ui-frontend - run: npm run test:conf-ci +# Disabled on 7.0 as tests are randomly KO... +# - name: Run tests on ui-frontend apps +# working-directory: ui/ui-frontend +# run: npm run test:conf-ci - name: Save JUnit report as artifact uses: mikepenz/action-junit-report@v4.3.1 if: success() || failure() # always run even if the previous step fails