This is a simple Orb based on https://github.com/coverallsapp/orb that will submit your coverage data to Coveralls.io.
coveralls/upload
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
- Validate:
circleci orb validate orb.yml
- Publish:
circleci orb publish orb.yml ergeon/[email protected]
This project is licensed under the terms of the MIT license.