generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 10
/
action.yml
34 lines (34 loc) · 1.18 KB
/
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
name: "Dart Analyze with Annotations"
description: "A GitHub action to run Dart analyzer with annotation support."
author: "Invertase"
inputs:
fatal-infos:
required: false
description: "Treat info level issues as fatal."
default: "false"
fatal-warnings:
required: false
description: "Treat warning level issues as fatal (defaults to true)."
default: "true"
annotate:
required: false
description: "Whether to add annotations to GitHub actions summary / PR review files. (defaults to true)."
default: "true"
annotate-only:
required: false
description: "If set to true only annotations will be created and the GitHub action itself will not fail on Dart analyzer problems. (defaults to false)."
default: "false"
custom-lint:
required: false
description: "If set to true the GitHub action will run custom_lint if it is found as dependency in the pubspec.yaml. (defaults to false)."
default: "false"
working-directory:
required: false
description: "The working directory to run the Dart analyzer in (defaults to `./`)."
default: ./
runs:
using: "node20"
main: "dist/index.js"
branding:
icon: "search"
color: "gray-dark"