Skip to content

ergeon/coveralls-orb

Repository files navigation

Coveralls Orb

CircleCI Build Status CircleCI Orb Version GitHub License CircleCI Community

This is a simple Orb based on https://github.com/coverallsapp/orb that will submit your coverage data to Coveralls.io.

Commands

  • coveralls/upload

Examples

Each example below should be placed into circle.yml or .circleci/config.yml file

version: 2.1

orbs:
  coveralls: ergeon/[email protected]

jobs:
  build:
    docker:
      - image: circleci/node:10.0.0

    steps:
      - checkout

      - run:
          name: Install and Make
          command: 'npm install && make test-coverage'

      - coveralls/upload

Dev Notes

  • Validate:
circleci orb validate orb.yml
  • Publish:
circleci orb publish orb.yml ergeon/[email protected]

License

This project is licensed under the terms of the MIT license.