Merge pull request #8 from HCloward/api-linting-updates #15
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Validate museum OpenAPI description | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20.5.1 | |
cache: 'npm' | |
- name: Install dependencies | |
run: npm install | |
- name: Run Redocly CLI linting | |
run: npm run lint |