Skip to content

Merge pull request #1027 from ahmadk953/dependabot/npm_and_yarn/radix… #2373

Merge pull request #1027 from ahmadk953/dependabot/npm_and_yarn/radix…

Merge pull request #1027 from ahmadk953/dependabot/npm_and_yarn/radix… #2373

Workflow file for this run

name: ESLint
on:
push:
branches: ['main']
pull_request:
branches: ['main']
schedule:
- cron: '25 21 * * 1'
jobs:
eslint:
name: Run eslint scanning
runs-on: ubuntu-latest
permissions:
contents: read
security-events: write
actions: read
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 'latest'
- name: Configure Corepack
run: corepack enable
- name: Install Dependencies
run: yarn install --immutable
- name: Run ESLint
run: npx next lint
--config eslint.config.mjs
--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@v3
with:
sarif_file: eslint-results.sarif
wait-for-processing: true