chore(deps): update registry.access.redhat.com/ubi8/ubi-minimal docker tag to v8.10-1154 #1619
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 | |
on: | |
pull_request: | |
branches-ignore: [] | |
push: | |
branches: | |
- main | |
jobs: | |
lint: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
# Check out repository under $GITHUB_WORKSPACE | |
- uses: actions/checkout@v4 | |
# Install Spectral | |
- id: install_spectral | |
run: npm install -g @stoplight/spectral-cli | |
# Run Spectral | |
- id: run_spectral | |
run: spectral lint ./protocol/*.{yml,yaml} --fail-severity=info |