We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d86c84 commit 8e7f95cCopy full SHA for 8e7f95c
.github/workflows/test-changed-firestore.yml
@@ -36,9 +36,11 @@ jobs:
36
- name: build
37
id: build
38
run: yarn build:changed firestore | egrep "Skipping all"
39
- # Only continue when "Skipping all is not found"
+ # Continue when "Skipping all" is not found
40
continue-on-error: true
41
- name: set output
42
+ # This means "Skipping all" was not found
43
+ if: steps.build.outcome != 'success'
44
id: set-output
45
run: echo "CHANGED=true" >> "$GITHUB_OUTPUT";
46
- name: Archive build
0 commit comments