apidocs: make linter return an exit code in case of errors (#1564)

This commit is contained in:
Alessandro Ros 2023-03-12 12:18:18 +01:00 committed by GitHub
parent 5fd3d1505d
commit e2370800ba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 9 deletions

View File

@ -11,6 +11,8 @@ info:
servers:
- url: http://localhost:9997
security: []
components:
schemas:
Conf:
@ -529,14 +531,6 @@ components:
additionalProperties:
$ref: '#/components/schemas/RTSPConn'
RTSPSConnsList:
type: object
properties:
items:
type: object
additionalProperties:
$ref: '#/components/schemas/RTSPConn'
RTSPSessionsList:
type: object
properties:

View File

@ -1,6 +1,6 @@
define DOCKERFILE_APIDOCS_LINT
FROM $(NODE_IMAGE)
RUN yarn global add @redocly/openapi-cli@1.0.0-beta.82
RUN yarn global add @redocly/cli@1.0.0-beta.123
endef
export DOCKERFILE_APIDOCS_LINT