Skip to content

Commit 43814d4

Browse files
committed
ci: add check for failed in all cases
1 parent e91f536 commit 43814d4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/self-hosted.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ jobs:
9393

9494
- name: Check for tests results
9595
run: |
96-
! grep -q "FAILED" ${{ env.test-file }}
96+
! grep -qi "FAILED" ${{ env.test-file }}
9797
9898
clean:
9999
name: Cleanup workspace

.github/workflows/ubuntu.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,4 +106,4 @@ jobs:
106106

107107
- name: Check for tests results
108108
run: |
109-
! grep -q "FAILED" ${{ env.test-file }}
109+
! grep -qi "FAILED" ${{ env.test-file }}

0 commit comments

Comments
 (0)