2019-08-06 18:02:35 -07:00
|
|
|
name: 'Codecov'
|
2019-08-07 17:04:13 -07:00
|
|
|
description: 'GitHub Action that uploads coverage reports for your repository to codecov.io'
|
|
|
|
|
author: 'Ibrahim Ali <@ibrahim0814> | Codecov'
|
2019-08-05 21:19:25 -07:00
|
|
|
inputs:
|
2019-08-07 16:42:40 -07:00
|
|
|
name:
|
2019-08-07 17:04:13 -07:00
|
|
|
description: 'User defined upload name. Visible in Codecov UI'
|
2019-08-07 16:42:40 -07:00
|
|
|
required: false
|
2019-08-05 21:19:25 -07:00
|
|
|
token:
|
2019-08-07 20:36:21 -07:00
|
|
|
description: 'Repository upload token - get it from codecov.io'
|
2019-10-17 12:32:14 -07:00
|
|
|
required: true
|
2019-08-07 10:51:41 -07:00
|
|
|
file:
|
2019-08-07 12:09:55 -07:00
|
|
|
description: 'Path to coverage file to upload'
|
2019-08-07 10:51:41 -07:00
|
|
|
required: false
|
2019-08-07 12:34:25 -07:00
|
|
|
flags:
|
|
|
|
|
description: 'Flag upload to group coverage metrics (e.g. unittests | integration | ui,chrome)'
|
|
|
|
|
required: false
|
2019-11-19 03:36:06 -08:00
|
|
|
yml:
|
|
|
|
|
description: 'Specify the location of the .codecov.yml config file'
|
|
|
|
|
required: false
|
2019-08-03 07:11:50 -07:00
|
|
|
branding:
|
2019-08-05 21:19:25 -07:00
|
|
|
color: 'red'
|
2019-08-03 07:11:50 -07:00
|
|
|
icon: 'umbrella'
|
2019-08-05 21:19:25 -07:00
|
|
|
runs:
|
2019-11-13 23:44:35 -08:00
|
|
|
using: 'node12'
|
2019-11-19 04:05:04 -08:00
|
|
|
main: 'dist/index.js'
|
2019-10-17 12:32:14 -07:00
|
|
|
|