ci: run scripts with strict error handling

This commit is contained in:
Nico Rehwaldt 2021-09-16 10:21:56 +02:00
parent 6b5ca77362
commit fd40070f51
4 changed files with 11 additions and 0 deletions

View File

@ -1,5 +1,7 @@
#!/bin/bash
set -eo pipefail
shopt -s inherit_errexit nullglob
# bumps bpmn-js and diagram-js dependencies in bpmn-io-demo

View File

@ -1,5 +1,8 @@
#!/bin/bash
set -eo pipefail
shopt -s inherit_errexit nullglob
# update bpmn-js version in the <bpmn-js-examples> project
PWD="$(pwd)"

View File

@ -1,5 +1,8 @@
#!/bin/bash
set -eo pipefail
shopt -s inherit_errexit nullglob
# bumps bpmn-js and diagram-js dependencies in bpmn-js-integration
PWD="$(pwd)"

View File

@ -1,5 +1,8 @@
#!/bin/bash
set -eo pipefail
shopt -s inherit_errexit nullglob
# update bpmn-js version in the <bpmn.io> project
PWD="$(pwd)"