Add spectral rules to check patterns #67
Workflow file for this run
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: Run Spectral Validation on all samples | |
on: | |
pull_request: | |
branches: | |
- "main" | |
paths: | |
- "calm/draft/**" | |
- "calm/pattern/**" | |
- "calm/samples/**" | |
- "spectral/**" | |
push: | |
branches: | |
- "main" | |
paths: | |
- "calm/draft/**" | |
- "calm/pattern/**" | |
- "calm/samples/**" | |
- "spectral/**" | |
jobs: | |
spectrals: | |
name: Run Spectral | |
runs-on: ubuntu-latest | |
steps: | |
# Check out the repository | |
- uses: actions/checkout@v4 | |
# Run Spectral | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: v20 | |
- run: npm install @stoplight/spectral-cli | |
- run: npx spectral lint --ruleset spectral/instantiation/validation-rules.yaml 'calm/samples/**/*(*.json|*.yaml)' | |