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 5971839 commit a5c5b24Copy full SHA for a5c5b24
.github/workflows/test.yaml
@@ -52,7 +52,11 @@ jobs:
52
run: |
53
echo "STATUS=$(git status --porcelain)" >> $GITHUB_OUTPUT
54
55
- - name: Ensure no changes
+ - name: No changes found
56
+ if: steps.changes.outputs.STATUS == ''
57
+ run: |
58
+ echo "git status is clean"
59
+ - name: Changes were found
60
if: steps.changes.outputs.STATUS != ''
61
62
echo "JS dist files need to be rebuilt"
0 commit comments