-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (48 loc) · 1.45 KB
/
eslint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: ESLint
on:
workflow_call:
workflow_dispatch:
jobs:
eslint:
name: Run eslint scanning
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
matrix:
node: [ 18, 20, 22 ]
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- name: Set npm cache directory
id: npm-cache
run: echo "dir=$(npm config get cache)" >> $GITHUB_OUTPUT
- name: Cache npm dependencies
uses: actions/cache@v4
with:
key: ${{ runner.os }}-npm-${{ hashFiles('package-lock.json') }}
path: ${{ steps.npm-cache.outputs.dir }}
restore-keys: ${{ runner.os }}-npm-
- name: Install dependencies
run: npm ci
- name: Install SARIF formatter for ESLint
run: npm install @microsoft/eslint-formatter-sarif@latest
- name: Run ESLint
run: npx eslint ./assets/scripts
--config .eslintrc.json
--ext .ts
--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