-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
32 lines (32 loc) · 950 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
name: "Balto - ESLint"
description: "Run ESLint on your repo"
runs:
using: node20
main: dist/index.js
branding:
icon: life-buoy
color: orange
inputs:
failure-level:
description: 'The lowest annotation level to fail on ("warning" or "error")'
required: false
default: "error"
conclusion-level:
description: 'Action conclusion ("success" or "failure") if annotations of the failure-level were created'
required: false
default: "success"
working-directory:
description: Which directory to run the action in
required: false
default: "."
extensions:
description: A comma separated list of extensions to run ESLint on.
required: false
default: ".js,.ts,.jsx,.tsx,.mjs,.cjs"
outputs:
warning-count:
description: "Number of relevant warnings found"
error-count:
description: "Number of relevant errors found"
total-count:
description: "Number of relevant warnings and errors"