GameDB: Various fixes #602
Workflow file for this run
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 GameDB | |
on: | |
push: | |
branches-ignore: | |
- "l10n_master" | |
paths: | |
- '**/GameIndex.yaml' | |
pull_request: | |
branches: | |
- master | |
paths: | |
- '**/GameIndex.yaml' | |
jobs: | |
lint: | |
name: Lint and Validate GameDB | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install Packages | |
run: | | |
npm install -g ajv-cli prettier | |
sudo apt-get -y install yamllint | |
- name: Validate YAML | |
run: | | |
yamllint -sd "{extends: relaxed, rules: {line-length: disable}}" ./bin/resources/GameIndex.yaml | |
- name: Validate Contents | |
run: | | |
ajv validate -s ./pcsx2/Docs/gamedb-schema.json --spec=draft2020 -d ./bin/resources/GameIndex.yaml | |
- name: Check Formatting | |
run: | | |
if ! prettier --check bin/resources/GameIndex.yaml; then | |
prettier --write bin/resources/GameIndex.yaml | |
echo "Prettier failed, diff:" | |
git diff bin/resources/GameIndex.yaml | |
exit 1 | |
fi |