Skip to content

Commit

Permalink
Merge branch 'master' of github.com:xola/ui-kit into XS-30
Browse files Browse the repository at this point in the history
* 'master' of github.com:xola/ui-kit:
  Explicitly specify GITHUB_TOKEN
  • Loading branch information
rushi committed Sep 9, 2024
2 parents b2c31b1 + d4db076 commit 293c48a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/eslint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
steps:
- uses: actions/checkout@v3
with:
token: "${{ github.token }}"
token: ${{ secrets.GITHUB_TOKEN }}
ref: ${{github.event.pull_request.head.sha}}
repository: ${{github.event.pull_request.head.repo.full_name}}

Expand All @@ -40,7 +40,7 @@ jobs:
cache-dependency-path: "package-lock.json"

- name: Install Node Dependencies
run: npm ci
run: npm ci --no-fund --no-audit

- name: Save Code Linting Report to JSON
# This is to show failures in GitHub pull request using the action below
Expand All @@ -52,6 +52,7 @@ jobs:
with:
check-name: "View Lint Report"
markdown-report-on-step-summary: true
repo-token: ${{ secrets.GITHUB_TOKEN }}
report-json: "eslint_report.json"

# # OPTIONAL: save a copy of the usage report for download or use in another job
Expand Down

0 comments on commit 293c48a

Please sign in to comment.