-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
36 lines (33 loc) · 841 Bytes
/
action.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
name: ESLint Report
description: Create a summary with the generated ESLint JSON report.
inputs:
token:
description: Github Token
required: true
default: ${{ github.token }}
report:
description: The path to the ESLint report JSON file
required: true
default: reports/lint.json
title:
description: the Summary title
required: false
default: ESLint Report
view-rules:
description: Enables the display of errors or warnings by rules
required: false
default: 'true'
fail-on-warning:
description: Fail when ESLint warnings are detected
required: false
default: 'false'
total-problems:
description: Total problems displayed in the report
required: false
default: '100'
runs:
using: node16
main: dist/index.js
branding:
icon: check-circle
color: purple