forked from github/webpack-bundlesize-compare-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaction.yml
22 lines (21 loc) · 780 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
name: 'Advanced bundle comparison'
description: 'Compare the bundle size between the base branch and the current branch with some extra configurations'
inputs:
current-stats-json-path:
description: 'The path to the current stats.json file'
required: true
base-stats-json-path:
description: 'The path to the base stats.json file'
required: true
github-token:
description: 'The Github token'
required: true
title:
description: 'An optional addition to the title, which also helps key comments, useful if running more than 1 copy of this action'
required: false
username:
description: 'An optional input, defining the username of the account that places the comment.'
required: false
runs:
using: 'node18'
main: 'dist/index.js'