Skip to content

Bump webpack from 5.76.0 to 5.94.0 #25

Bump webpack from 5.76.0 to 5.94.0

Bump webpack from 5.76.0 to 5.94.0 #25

Workflow file for this run

name: ESLint
on:
pull_request:
branches: [ "main" ]
jobs:
eslint:
name: Run eslint scanning
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install ESLint
run: |
npm ci
- name: Run ESLint
run: |
npx eslint src/**/*.js \
--config .eslintrc.json \
--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: eslint-results.sarif
wait-for-processing: true