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:
|
2020-03-04 18:30:14 -08:00
|
|
|
description: 'Repository upload token - get it from codecov.io. Required only for private repositories'
|
|
|
|
|
required: false
|
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
|
2020-03-20 16:05:53 +00:00
|
|
|
env_vars:
|
|
|
|
|
description: 'Environment variable to take the upload with, can be multiple separated with commas'
|
|
|
|
|
required: false
|
2019-12-05 00:57:51 -08:00
|
|
|
fail_ci_if_error:
|
2019-12-05 21:42:20 -08:00
|
|
|
description: 'Specify whether or not CI build should fail if Codecov runs into an error during upload'
|
2019-12-05 00:57:51 -08:00
|
|
|
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
|
|
|
|