We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5cc0943 commit ec92512Copy full SHA for ec92512
.azure-pipelines/ci-build.yml
@@ -42,6 +42,8 @@ jobs:
42
git submodule update --init --recursive
43
- template: ./common-templates/install-tools.yml
44
- template: ./common-templates/security-pre-checks.yml
45
+
46
+ - template: ./generation-templates/check-openapi-errors.yml
47
48
- template: ./generation-templates/authentication-module.yml
49
parameters:
.azure-pipelines/generation-templates/check-openapi-errors.yml
@@ -0,0 +1,10 @@
1
+# Copyright (c) Microsoft Corporation. All rights reserved.
2
+# Licensed under the MIT License.
3
+steps:
4
+ - task: PowerShell@2
5
+ displayName: Check for OpenAPI Errors
6
+ inputs:
7
+ targetType: inline
8
+ pwsh: true
9
+ script: |
10
+ . $(System.DefaultWorkingDirectory)/tools/OpenApiInfoGenerator/OpenApiInfoGenerator/OpenApiChanges.ps1
0 commit comments