repo sync #20
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: OpenAPI dev mode check | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
check-schema-versions: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository code | |
uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f | |
- name: Install dependencies | |
run: npm ci | |
# Differences between decorated and dereferenced files indicates a problem | |
- name: Generate decorated files to check that there are no differences | |
run: script/rest/update-files.js --decorate-only | |
- name: Check if deref/decorated schemas are dev mode and that they match | |
run: .github/actions-scripts/openapi-schema-branch.js |