chore: switch out spectral for vacuum #134
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: Lint | |
"on": | |
pull_request: {} | |
push: | |
branches: [main] | |
paths-ignore: | |
- 'README.md' | |
- 'src/**' | |
jobs: | |
build: | |
name: API Linting | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: read | |
# To report GitHub Actions status checks | |
statuses: write | |
# To report junit results to PR | |
checks: write | |
pull-requests: write | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: npm ci | |
- name: Lint API | |
run: npx vacuum report --junit openapi.yaml lint-results | |
# - name: Publish Test Results | |
# uses: EnricoMi/publish-unit-test-result-action@v2 | |
# if: success() || failure() | |
# with: | |
# files: | | |
# lint-results-*.xml | |
- name: Test Report | |
uses: dorny/test-reporter@v1 | |
if: success() || failure() # run this step even if previous step failed | |
with: | |
name: JEST Tests # Name of the check run which will be created | |
path: lint-results-*.xml # Path to test results | |
reporter: jest-junit # Format of test results |