CIV-15082 CoSC Claimant Dashboard Notification #1038
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Check bpmn processes have been linted | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- edited | |
- synchronize | |
jobs: | |
lint: | |
if: "!contains(github.event.pull_request.head.ref, 'renovate') && !contains(github.event.pull_request.head.ref, 'dependabot')" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Check processes have name | |
uses: mikefarah/yq@master | |
with: | |
cmd: > | |
for file in src/main/resources/camunda/*.bpmn; | |
do | |
if ! yq -oy -e -p xml '.definitions.process.+@name' "$file"; | |
then | |
echo "Process $file does not have a name" >&2; | |
exit 1; | |
fi; | |
done | |
- name: Check BPMN processes have camunda:historyTimeToLive | |
run: | | |
for file in src/main/resources/camunda/*.bpmn; | |
do | |
if ! yq -r -p xml '.["bpmn:definitions"]["bpmn:process"]["@camunda:historyTimeToLive"]' "$file"; then | |
echo "Process $file does not have camunda:historyTimeToLive attribute" >&2 | |
exit 1 | |
fi | |
done |