test_themes 463 B

12345678910111213141516171819
  1. #!/bin/bash
  2. echo_summary() {
  3. [ "$GITHUB_STEP_SUMMARY" != "" ] && echo "$1" >> $GITHUB_STEP_SUMMARY
  4. echo "$1"
  5. }
  6. echo_summary "# CutBox Theme Validation"
  7. echo_summary "| Theme Name | |"
  8. echo_summary "|---|---|"
  9. for theme in CutBox/CutBox/themes/*cutboxTheme; do
  10. if bin/cutbox_theme_validator "$theme"; then
  11. echo_summary "| $(basename "$theme") | ✓ |"
  12. else
  13. echo_summary "| $(basename "$theme") | ✗ |"
  14. exit 1
  15. fi
  16. done