Refactor to make event patching sensible and fix a problem with an allOf #72
Workflow file for this run
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: Set up node | |
uses: actions/setup-node@v4 | |
- name: Install Redocly CLI | |
run: npm install -g @redocly/cli@latest | |
- name: Run linting | |
run: redocly lint --format=github-actions | |