Skip to content

Commit e6c8078

Browse files
authored
chore(github): print uncommitted files for browserstack (stenciljs#3531)
this commit updates the "Git status check" step of the browserstack workflow to print the names of the files that are uncommitted
1 parent 9132a76 commit e6c8078

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/test-browserstack.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,5 +101,5 @@ jobs:
101101
# here we check that there are no changed / new files from our test
102102
# run. we use `git status`, grep out the build zip (downloaded above),
103103
# and check if there are more than 0 lines in the output.
104-
run: if [[ $(git status --short | grep -c -v stencil-core-build.zip) -ne 0 ]]; then exit 1; fi
104+
run: if [[ $(git status --short | grep -c -v stencil-core-build.zip) -ne 0 ]]; then echo git status --short; exit 1; fi
105105
shell: bash

0 commit comments

Comments
 (0)