mirror of
https://github.com/ahmadk953/poixpixel-discord-bot.git
synced 2025-06-22 14:14:20 +00:00
49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
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
|
|
strategy:
|
|
matrix:
|
|
node-version: [24.x]
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Configure Corepack
|
|
run: corepack enable
|
|
|
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: ${{ matrix.node-version }}
|
|
cache: yarn
|
|
|
|
- name: Install Dependencies
|
|
run: yarn install
|
|
|
|
- name: Run ESLint
|
|
run: yarn dlx eslint ./src
|
|
--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
|