This repository has been archived by the owner on Aug 29, 2023. It is now read-only.
[WIP] Unified CI 2.0 #487
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
on: | |
pull_request: | |
paths: | |
- 'configs/*.json' | |
name: Check Config | |
jobs: | |
check-config: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: check if config files are sorted alphabetically | |
run: | | |
for config in configs/*.json; do | |
echo "::group::$config" | |
./scripts/check-config.sh $config | |
echo "::endgroup::" | |
done |