Skip to content

Commit

Permalink
build(coveralls): add coveralls to travis build process
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelSolati committed Aug 11, 2018
1 parent 51aa3f7 commit e2f932f
Show file tree
Hide file tree
Showing 8 changed files with 2,785 additions and 92 deletions.
16 changes: 10 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
/dist
/docs
/node_modules
/.rpt2_cache
npm-debug.log
# Folders
.nyc_output/
.rpt2_cache/
coverage/
dist/
docs/
node_modules/

# Files
.DS_Store
.git
npm-debug.log
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ install:
script:
- npm run test
after_success:
- npm run coverage
- npm run build
- npm run docs
- firebase deploy --non-interactive --token $FIREBASE_TOKEN
deploy:
- provider: npm
Expand Down
3 changes: 3 additions & 0 deletions COMMITS.MD
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ readable messages** that are easy to follow when looking through the **project h
we use the git commit messages to **generate the project change log**.

## Commit Message Format

Each commit message consists of a **header**, a **body** and a **footer**. The header has a special
format that includes a **type**, a **scope** and a **subject**:

Expand All @@ -22,11 +23,13 @@ Any line of the commit message cannot be longer 100 characters! This allows the
to read on GitHub as well as in various git tools.

## Revert

If the commit reverts a previous commit, it should begin with `revert: `, followed by the header of
the reverted commit. In the body it should say: `This reverts commit <hash>.`, where the hash is
the SHA of the commit being reverted.

## Type

Must be one of the following:

* **feat**: A new feature
Expand Down
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Geokit [![Build Status](https://travis-ci.org/MichaelSolati/geokit.svg?branch=master)](https://travis-ci.org/MichaelSolati/geokit) [![npm version](https://badge.fury.io/js/geokit.svg)](https://badge.fury.io/js/geokit)
# geokit

[![Build Status](https://travis-ci.org/MichaelSolati/geokit.svg?branch=master)](https://travis-ci.org/MichaelSolati/geokit) [![npm version](https://badge.fury.io/js/geokit.svg)](https://badge.fury.io/js/geokit) [![Coverage Status](https://coveralls.io/repos/github/MichaelSolati/geokit/badge.svg?branch=master)](https://coveralls.io/github/MichaelSolati/geokit?branch=master)

An assortment of geolocation related tools, all packaged in one easy to use kit.

## Methods
Expand Down
Loading

0 comments on commit e2f932f

Please sign in to comment.