Updated E0 strings for iOS #168
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: Check json files | |
on: | |
push: | |
branches: | |
- '**' | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- '**' | |
types: [opened, synchronize, reopened] | |
jobs: | |
check-json: | |
name: Check json files | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt update | |
sudo apt install -y jq | |
- name: Check json validity | |
run: | | |
for file in $(find . -name '*.json'); do | |
echo "Checking $file" | |
jq empty $file | |
done |