Skip to content

7.01 pdb

7.01 pdb #83

Workflow file for this run

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