Skip to content

CIV-15082 CoSC Claimant Dashboard Notification #1038

CIV-15082 CoSC Claimant Dashboard Notification

CIV-15082 CoSC Claimant Dashboard Notification #1038

Workflow file for this run

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