Skip to content

Commit

Permalink
try a default check setup
Browse files Browse the repository at this point in the history
  • Loading branch information
philsturgeon committed Jan 7, 2025
1 parent 69c46b9 commit 2763948
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,8 @@ jobs:
runs-on: ubuntu-latest

permissions:
# To report junit results to PR
checks: write
pull-requests: write
pull-requests: write

steps:
- name: Checkout code
Expand All @@ -28,10 +27,9 @@ jobs:
- name: Lint API
run: npm exec vacuum report --junit openapi.yaml lint-results

- name: Publish Test Report
- name: Write out Unit Test report annotation for forked repo
if: success() || failure()
uses: mikepenz/action-junit-report@v5
if: success() || failure() # always run even if the previous step fails
with:
report_paths: lint-results-*.xml
check_name: API Lint Results
comment: true

0 comments on commit 2763948

Please sign in to comment.