Update community-packs.json #25
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
# This workflow will validate json files against their schema | |
name: validate | |
on: [push, pull_request] | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: | | |
sudo apt-get install -y python3-pip | |
pip3 install -r util/requirements.txt | |
- name: Validate examples | |
run: | | |
python3 util/validate-packs.py examples/packs.json | |
python3 util/validate-versions.py examples/versions.json | |
- name: Validate community-packs.json | |
run: | | |
python3 util/validate-packs.py --follow-links community-packs.json |