chore: do not persist credentials on gh actions #90
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
permissions: | |
actions: read | |
name: ESLint and Prettier | |
on: push | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
# required for all workflows | |
security-events: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
persist-credentials: false | |
- uses: actions/setup-node@v4 | |
- name: Install modules | |
run: npm install | |
- name: Run prettier | |
run: npx prettier --check . | |
- name: Run ESLint | |
run: npx eslint --color -c .eslintrc.json . | |
# GH's SARIF viewer does not support suppression directives so we get too many false positives | |
# - name: SARIF | |
# run: npx eslint -c .eslintrc.json -f @microsoft/eslint-formatter-sarif -o eslint.sarif . || true | |
# - name: Upload SARIF file | |
# uses: github/codeql-action/upload-sarif@v3 | |
# with: | |
# sarif_file: eslint.sarif |