Skip to content

Commit fbd28b7

Browse files
committed
add pipefail
1 parent dd97567 commit fbd28b7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/test-changed-firestore.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,9 @@ jobs:
3535
yarn
3636
- name: build
3737
id: build
38-
run: yarn build:changed firestore | tee ${{ runner.temp }}/yarn.log.txt
38+
run: |
39+
set -o pipefail
40+
yarn build:changed firestore | tee ${{ runner.temp }}/yarn.log.txt
3941
- name: Check if Firestore is changed
4042
id: check-changed
4143
run: egrep "Skipping all" ${{ runner.temp }}/yarn.log.txt

0 commit comments

Comments
 (0)