Skip to content

Fix models titles to match relative path (#44) #242

Fix models titles to match relative path (#44)

Fix models titles to match relative path (#44) #242

Workflow file for this run

name: Lint documents
on:
push:
pull_request:
workflow_dispatch:
jobs:
lint-models:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- run: npm ci
- name: lint models
run: npx spectral lint ./reference/**/*.yaml --ruleset .spectral.models.yaml --fail-severity warn
lint-openapi:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
cache: npm
- run: npm ci
- name: lint OpenAPI docs
run: npx spectral lint ./reference/**/*.yaml --ruleset .spectral.yaml