ci: run scripts with strict error handling
This commit is contained in:
parent
6b5ca77362
commit
fd40070f51
|
@ -1,5 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -eo pipefail
|
||||||
|
shopt -s inherit_errexit nullglob
|
||||||
|
|
||||||
# bumps bpmn-js and diagram-js dependencies in bpmn-io-demo
|
# bumps bpmn-js and diagram-js dependencies in bpmn-io-demo
|
||||||
|
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -eo pipefail
|
||||||
|
shopt -s inherit_errexit nullglob
|
||||||
|
|
||||||
# update bpmn-js version in the <bpmn-js-examples> project
|
# update bpmn-js version in the <bpmn-js-examples> project
|
||||||
|
|
||||||
PWD="$(pwd)"
|
PWD="$(pwd)"
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -eo pipefail
|
||||||
|
shopt -s inherit_errexit nullglob
|
||||||
|
|
||||||
# bumps bpmn-js and diagram-js dependencies in bpmn-js-integration
|
# bumps bpmn-js and diagram-js dependencies in bpmn-js-integration
|
||||||
|
|
||||||
PWD="$(pwd)"
|
PWD="$(pwd)"
|
||||||
|
|
|
@ -1,5 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -eo pipefail
|
||||||
|
shopt -s inherit_errexit nullglob
|
||||||
|
|
||||||
# update bpmn-js version in the <bpmn.io> project
|
# update bpmn-js version in the <bpmn.io> project
|
||||||
|
|
||||||
PWD="$(pwd)"
|
PWD="$(pwd)"
|
||||||
|
|
Loading…
Reference in New Issue