XS✔ ◾ Good PRs - link to PR template rule #11924
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CheckExtensionCase | |
on: | |
pull_request: | |
branches: [ main ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- id: file_changes | |
uses: trilom/[email protected] | |
- name: test | |
run: | | |
FILES=${{steps.file_changes.outputs.files_added}} | |
if [ ${#FILES} -ge 3 ]; | |
then | |
IFS=", " read -a myarray <<< $FILES | |
for filename in "${myarray[@]}" | |
do | |
fileExtension=$(echo $filename | sed 's/"//g' | sed 's/]//g' | grep -o '...$') | |
lowercaseFileExtension=$(echo "$fileExtension" | tr '[:upper:]' '[:lower:]') | |
if [ $lowercaseFileExtension == 'gif' ] || [ $lowercaseFileExtension == 'svg' ] | |
then | |
if ! [[ $fileExtension =~ ^[[:lower:]]+$ ]]; | |
then | |
echo "Use lowercase file extensions" | |
exit 1 | |
fi | |
fi | |
done | |
fi |