Skip to content
This repository has been archived by the owner on Aug 29, 2023. It is now read-only.

[WIP] Unified CI 2.0 #487

[WIP] Unified CI 2.0

[WIP] Unified CI 2.0 #487

Workflow file for this run

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