Skip to content

Commit d16070f

Browse files
committed
build error
1 parent 20dfd8b commit d16070f

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

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

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ jobs:
3838
run: |
3939
set -o pipefail
4040
yarn build:changed firestore | tee ${{ runner.temp }}/yarn.log.txt
41+
continue-on-error: false
4142
- name: Check if Firestore is changed
4243
id: check-changed
4344
run: egrep "Skipping all" ${{ runner.temp }}/yarn.log.txt
@@ -191,8 +192,8 @@ jobs:
191192
runs-on: ubuntu-latest
192193
if: always()
193194
name: Check all required tests results
194-
needs: [test-chrome, compat-test-chrome]
195+
needs: [build, test-chrome, compat-test-chrome]
195196
steps:
196197
- name: Check test matrix
197-
if: needs.test-chrome.result == 'failure' || needs.compat-test-chrome.result == 'failure'
198+
if: needs.build.result == 'failure' || needs.test-chrome.result == 'failure' || needs.compat-test-chrome.result == 'failure'
198199
run: exit 1

0 commit comments

Comments
 (0)