We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b46e3f3 commit 4ad3d81Copy full SHA for 4ad3d81
1 file changed
.github/workflows/commit.yml
@@ -147,8 +147,8 @@ jobs:
147
- name: Assert thresholds
148
run: |
149
output=$(lhci assert --config=lighthouserc.yml 2>&1) || {
150
- echo "$output" | grep -E "url:|category:|actual:|expected:" | while IFS= read -r line; do
151
- echo "::error::$line"
+ echo "$output" | while IFS= read -r line; do
+ [[ -n "$line" ]] && echo "::error::$line"
152
done
153
exit 1
154
}
0 commit comments