Skip to content

chore: do not persist credentials on gh actions #90

chore: do not persist credentials on gh actions

chore: do not persist credentials on gh actions #90

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