mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-23 20:27:02 +08:00
30 lines
909 B
YAML
30 lines
909 B
YAML
name: 'Codecov'
|
|
description: 'GitHub Action that uploads coverage reports for your repository to codecov.io'
|
|
author: 'Ibrahim Ali <@ibrahim0814> | Codecov'
|
|
inputs:
|
|
name:
|
|
description: 'User defined upload name. Visible in Codecov UI'
|
|
required: false
|
|
token:
|
|
description: 'Repository upload token - get it from codecov.io'
|
|
required: true
|
|
file:
|
|
description: 'Path to coverage file to upload'
|
|
required: false
|
|
flags:
|
|
description: 'Flag upload to group coverage metrics (e.g. unittests | integration | ui,chrome)'
|
|
required: false
|
|
yml:
|
|
description: 'Specify the location of the .codecov.yml config file'
|
|
required: false
|
|
fail_ci_if_error:
|
|
description: 'Specify whether or not CI build should fail if Codecov runs into an error during upload'
|
|
required: false
|
|
branding:
|
|
color: 'red'
|
|
icon: 'umbrella'
|
|
runs:
|
|
using: 'node12'
|
|
main: 'dist/index.js'
|
|
|