ban echoglossian #81
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: Validate JSON on Pull Request | |
on: | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
jobs: | |
validate-json: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Validate JSON | |
run: | | |
# Check if the file exists | |
if [ -f ./UIRes/bannedplugin.json ]; then | |
# Validate the JSON file | |
DUPES=$(cat ./UIRes/bannedplugin.json | jq 'group_by(.Name)[] | {Name: .[0].Name, length: length} | select(.length > 1)') | |
echo "${#DUPES}" | |
echo "${DUPES}" | |
if [ $? -eq 0 ]; then | |
echo "JSON file is valid" | |
if [ "${#DUPES}" -gt 0 ]; then | |
echo "Duplicate entries found. Please correct them. ${DUPES}" | |
exit 1 | |
fi | |
else | |
echo "JSON file is invalid" | |
exit 1 | |
fi | |
else | |
echo "JSON file not found" | |
exit 1 | |
fi |