Skip to content
This repository has been archived by the owner on Mar 27, 2020. It is now read-only.

Latest commit

 

History

History

plugin-lib-codecov

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

💯 plugin-lib-codecov

npm linux windows coverage deps

Send code coverage report to codecov.io.

Install

$ yarn add --dev @start/plugin-lib-codecov
# or
$ npm install --save-dev @start/plugin-lib-codecov

Usage

Example

import sequence from '@start/plugin-sequence'
import find from '@start/plugin-find'
import read from '@start/plugin-read'
import codecov from '@start/plugin-lib-codecov'

export task = () =>
  sequence(
    find('coverage/lcov.info'),
    read,
    codecov
  )