Browse Source
Add OpenAPI checker
Signed-off-by: jld3103 <jld3103yt@gmail.com>
pull/39716/head
jld3103
2 years ago
No known key found for this signature in database
GPG Key ID: 9062417B9E8EB7B3
1 changed files with
26 additions and
0 deletions
-
build/openapi-checker.sh
|
|
|
@ -0,0 +1,26 @@ |
|
|
|
#!/usr/bin/env bash |
|
|
|
|
|
|
|
for path in core/openapi.json apps/*/openapi.json; do |
|
|
|
composer exec generate-spec "$(dirname "$path")" "$path" || exit 1 |
|
|
|
done |
|
|
|
|
|
|
|
files="$(git diff --name-only)" |
|
|
|
changed=false |
|
|
|
for file in $files; do |
|
|
|
if [[ $file == *"openapi.json" ]]; then |
|
|
|
changed=true |
|
|
|
break |
|
|
|
fi |
|
|
|
done |
|
|
|
|
|
|
|
if [ $changed = true ] |
|
|
|
then |
|
|
|
git diff |
|
|
|
echo "The OpenAPI specifications are not up to date" |
|
|
|
echo "Please run: bash build/openapi-checker.sh" |
|
|
|
echo "And commit the result" |
|
|
|
exit 1 |
|
|
|
else |
|
|
|
echo "OpenAPI specifications up to date. Carry on" |
|
|
|
exit 0 |
|
|
|
fi |