From 47c2d795e0d3b0cba226f94666b3d49110ebe3e7 Mon Sep 17 00:00:00 2001 From: webdevcody Date: Wed, 7 Jan 2026 20:00:52 -0500 Subject: [PATCH] chore: update e2e test results upload configuration - Renamed the upload step to clarify that it includes screenshots, traces, and videos. - Changed the condition for uploading test results to always run, ensuring artifacts are uploaded regardless of test outcome. - Added a new option to ignore if no files are found during the upload process. --- .github/workflows/e2e-tests.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/e2e-tests.yml b/.github/workflows/e2e-tests.yml index df1b05b4..552b9ac3 100644 --- a/.github/workflows/e2e-tests.yml +++ b/.github/workflows/e2e-tests.yml @@ -78,10 +78,12 @@ jobs: path: apps/ui/playwright-report/ retention-days: 7 - - name: Upload test results + - name: Upload test results (screenshots, traces, videos) uses: actions/upload-artifact@v4 - if: failure() + if: always() with: name: test-results - path: apps/ui/test-results/ + path: | + apps/ui/test-results/ retention-days: 7 + if-no-files-found: ignore