Skip to content

Commit bea5f8c

Browse files
committed
allow workflow to continue upon test fails
1 parent 9549d14 commit bea5f8c

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/fe_e2e.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ jobs:
9595
- name: Run Playwright tests
9696
run: npm run test:e2e-coverage
9797
working-directory: frontend
98+
continue-on-error: true
9899

99100
# Upload coverage as artifact
100101
- name: Upload coverage artifact
@@ -103,6 +104,13 @@ jobs:
103104
name: coverage
104105
path: frontend/coverage/
105106

107+
# Upload test reports as artifact
108+
- name: Upload coverage artifact
109+
uses: actions/upload-artifact@v4
110+
with:
111+
name: test-reports
112+
path: frontend/playwright-report/
113+
106114
# SonarQube Analysis
107115
- name: SonarQube Scan
108116
uses: SonarSource/sonarqube-scan-action@v5

0 commit comments

Comments
 (0)