Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Story #12116: backport GitHub Actions: disable randomly failing tests #2106

Merged
merged 1 commit into from
Oct 3, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down