Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/spectral-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ on:
- 'tools/spectral/**'
- 'openapi/**.yaml'
- 'package.json'
permissions:
issues: write
contents: write

jobs:
spectral-lint:
Expand Down Expand Up @@ -49,5 +46,5 @@ jobs:
- name: IPA validation action
uses: stoplightio/spectral-action@2ad0b9302e32a77c1caccf474a9b2191a8060d83
with:
file_glob: ${{ github.workspace }}//v2.yaml
file_glob: v2.yaml
spectral_ruleset: tools/spectral/ipa/ipa-spectral.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ function checkViolationsAndReturnErrors(input, options, path) {

return [];
} catch (e) {
console.log(e);
handleInternalError(RULE_NAME, path, e);
}
}
Loading