2.0.0 • Published 4 years ago

@start/plugin-lib-codecov v2.0.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 years ago

💯 plugin-lib-codecov

Send code coverage report to codecov.io.

Install

$ yarn add --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
  )