Update node workflow for better error messages

Signed-off-by: Vincent Petry <vincent@nextcloud.com>
pull/33451/head
Vincent Petry 2 years ago
parent 9475cc02b2
commit b5895459c9
No known key found for this signature in database
GPG Key ID: E055D6A4D513575C

@ -13,6 +13,9 @@ on:
- master
- stable*
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
@ -50,10 +53,12 @@ jobs:
- name: Check webpack build changes
run: |
bash -c "[[ ! \"`git status --porcelain `\" ]] || exit 1"
bash -c "[[ ! \"`git status --porcelain `\" ]] || (echo 'Please recompile and commit the assets, see the section \"Show changes on failure\" for details' && exit 1)"
- name: Show changes on failure
if: failure()
run: |
git status
git --no-pager diff
exit 1 # make it red to grab attention

Loading…
Cancel
Save