Skip to content

misc: swagger api spec fixes #9

misc: swagger api spec fixes

misc: swagger api spec fixes #9

Workflow file for this run

name: Lint API Specs
on:
pull_request:
paths:
- 'specs/swagger/**'
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
- name: Install Redocly CLI
run: npm install -g @redocly/cli
- name: Lint OpenAPI specification
run: |
cd specs/swagger
echo "Linting OpenAPI specification..."
redocly lint openapi.yaml
env:
GITHUB_TOKEN: ${{ secrets.GH_SYSTEMSDT_TOKEN }}