We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3c68ed commit dee5f0dCopy full SHA for dee5f0d
.github/workflows/check_examples.yml
@@ -13,7 +13,8 @@ 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 -Rs 'split("\n")[:-1]')
+ FILES=$(find examples -type f \( -name "*.ascxml" -o -name "*.scxml" -o -name "*.xml" \) | jq -R . | jq -s .)
17
+ FILES=$(echo "$FILES" | tr -d '\n') # Ensure single-line JSON
18
echo "Files found: $FILES"
19
echo "files=$FILES" >> $GITHUB_OUTPUT
20
validate-xml:
0 commit comments