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 4a3ee61 commit 7de500dCopy full SHA for 7de500d
2 files changed
.github/workflows/lint.yml
@@ -56,3 +56,17 @@ jobs:
56
config: '.markdownlint.json'
57
globs: |
58
**/*.md
59
+
60
+ - name: Setup Node
61
+ uses: actions/setup-node@2028fbc5c25fe9cf00d9f06a71cc4710d4507903 # v6.0.0
62
+ with:
63
+ node-version: '24.x'
64
65
+ - name: Install Spectral
66
+ run: npm install --global "@stoplight/spectral-cli@${SPECTRAL_VERSION}"
67
+ env:
68
+ # renovate: datasource=npm packageName=@stoplight/spectral-cli
69
+ SPECTRAL_VERSION: '6.15.0'
70
71
+ - name: Run Spectral
72
+ run: spectral lint "./test/Swashbuckle.AspNetCore.IntegrationTests/snapshots/*" --display-only-failures --fail-severity error --format github-actions
.spectral.yaml
@@ -0,0 +1 @@
1
+extends: ['spectral:oas']
0 commit comments