We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 37f5fa6 commit 3159c36Copy full SHA for 3159c36
scripts/generate-open-api.sh
@@ -81,7 +81,9 @@ if [ -f "$remote_specs_file" ]; then
81
filename="${output_dir}/alchemy/rest/${name}.json"
82
(
83
if [ "$validate_only" = true ]; then
84
- echo "Skipping remote spec: ${name} (validate-only mode)"
+ if ! pnpm exec redocly lint "$url" --format json; then
85
+ exit 1
86
+ fi
87
else
88
if ! pnpm exec redocly bundle "$url" --dereferenced --output "$filename" --ext json --remove-unused-components; then
89
exit 1
0 commit comments