File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change 90
90
91
91
- name : Run Pa11y CI on changed pages only and save output
92
92
id : run_pa11y
93
+ shell : bash # <-- this fixes the mapfile error
93
94
run : |
94
95
num_files=$(jq length pa11y_targets.json)
95
96
touch pa11y_output.md
@@ -100,7 +101,7 @@ jobs:
100
101
echo "### 🚦 Pa11y Accessibility Report" > pa11y_output.md
101
102
echo "" >> pa11y_output.md
102
103
103
- # Deduplicate HTML targets and read them into an array
104
+ # Deduplicate HTML targets and read into array
104
105
mapfile -t html_files < <(jq -r '.[]' pa11y_targets.json | sort -u)
105
106
106
107
for file in "${html_files[@]}"; do
@@ -118,6 +119,7 @@ jobs:
118
119
fi
119
120
120
121
122
+
121
123
- name : Debug GitHub context
122
124
run : |
123
125
echo "Event name: ${{ github.event_name }}"
You can’t perform that action at this time.
0 commit comments