forked from getsentry/size-limit-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
37 lines (37 loc) · 1.02 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
35
36
37
name: "size-limit-action"
description: "size-limit action"
author: "Andres Alvarez <a.alvarez.sor@gmail.com>"
branding:
icon: "activity"
color: "green"
inputs:
github_token:
required: true
description: "a github access token"
build_script:
required: false
description: 'a custom npm script to build'
clean_script:
required: false
description: 'a npm script to clean up build directory'
skip_step:
required: false
description: 'which step to skip, either "install" or "build"'
directory:
required: false
description: "a custom subdirectory"
windows_verbatim_arguments:
required: false
description: "exec `size-limit` with the option `windowsVerbatimArguments`"
default: true
main_branch:
required: false
default: master
description: "The name of the main/protected branch"
threshold:
required: false
default: 0.0125
description: "The percentage threshold for size changes before posting a comment"
runs:
using: "node16"
main: "dist/index.js"