We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 664821a commit e0e06b1Copy full SHA for e0e06b1
1 file changed
.github/workflows/lint.yml
@@ -33,6 +33,14 @@ jobs:
33
34
- name: Install dependencies
35
run: npm ci
36
+
37
+ - name: Check combined schema
38
+ run: |
39
+ npm run build:openapi
40
+ if [ -n "$(git status --porcelain)" ]; then
41
+ echo "Error: Build produced uncommitted changes in openapi.yaml. Please rerun npm run build:openapi and commit the changes to the combined schema"
42
+ exit 1
43
+ fi
44
45
- name: Lint
- run: npm run lint
46
+ run: npm run lint:openapi
0 commit comments