Skip to content

Commit

Permalink
Merge pull request #2 from micah-akpan/chore/integrate-ci
Browse files Browse the repository at this point in the history
- chore/integrate travis ci
  • Loading branch information
micah-akpan committed Sep 1, 2019
2 parents 812bfbc + 59d0961 commit 9090e83
Show file tree
Hide file tree
Showing 6 changed files with 1,057 additions and 15 deletions.
1 change: 1 addition & 0 deletions .coveralls.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
repo_token: nzEAU5xBJLeML64wcAy4qSHRrRCBm8wyH
5 changes: 5 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
language: node_js
node_js:
- node

after_success: npm run coverage
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# sign-teller
Sign Teller is a library that tells me one what their zodiac sign is

[![Build Status](https://travis-ci.org/micah-akpan/sign-teller.svg?branch=develop)](https://travis-ci.org/micah-akpan/sign-teller) [![Coverage Status](https://coveralls.io/repos/github/micah-akpan/sign-teller/badge.svg?branch=develop)](https://coveralls.io/github/micah-akpan/sign-teller?branch=develop)
4 changes: 4 additions & 0 deletions lib/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Attribution
// Most of the details in the signs.json files were taken from https://www.horoscope.com/zodiac-signs site
// and https://thoughtcatalog.com/january-nelson/2019/01/sidereal-astrology/

const tellSign = require('./tell-sign');

module.exports = tellSign;
7 changes: 5 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,12 @@
"author": "Micah Akpan <mickey4sure2k7@gmail.com>",
"license": "MIT",
"devDependencies": {
"mocha": "^6.2.0"
"coveralls": "^3.0.6",
"mocha": "^6.2.0",
"nyc": "^14.1.1"
},
"scripts": {
"test": "mocha"
"test": "nyc mocha",
"coverage": "nyc report --reporter=text-lcov | coveralls"
}
}
Loading

0 comments on commit 9090e83

Please sign in to comment.