Skip to content

dependabot: Bump @typescript-eslint/eslint-plugin from 5.62.0 to 6.7.3 in /friendly-app #36

dependabot: Bump @typescript-eslint/eslint-plugin from 5.62.0 to 6.7.3 in /friendly-app

dependabot: Bump @typescript-eslint/eslint-plugin from 5.62.0 to 6.7.3 in /friendly-app #36

Workflow file for this run

name: ESLint
on:
push:
branches: [ "main" ]
pull_request:
merge_group:
workflow_dispatch:
jobs:
eslint:
name: Run eslint scanning
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./friendly-app
permissions:
contents: read
security-events: write
actions: read
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install
run: npm i
- name: Run ESLint
run: npm run lintCheck -- --format @microsoft/eslint-formatter-sarif --output-file eslint-results.sarif
continue-on-error: true
- name: Upload analysis results to GitHub
uses: github/codeql-action/upload-sarif@v2
with:
sarif_file: friendly-app/eslint-results.sarif
wait-for-processing: true