We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3285811 commit a3c68edCopy full SHA for a3c68ed
1 file changed
.github/workflows/check_examples.yml
@@ -13,7 +13,7 @@ jobs:
13
- name: Find SCXML files
14
id: set-files
15
run: |
16
- FILES=$(find examples -type f -name "*.ascxml" -o -name "*.scxml" -o -name "*.xml" | jq -R . | jq -s .)
+ FILES=$(find examples -type f \( -name "*.ascxml" -o -name "*.scxml" -o -name "*.xml" \) | jq -Rs 'split("\n")[:-1]')
17
echo "Files found: $FILES"
18
echo "files=$FILES" >> $GITHUB_OUTPUT
19
validate-xml:
0 commit comments