Skip to content

Commit

Permalink
Merge pull request #17 from rubixibuc/setup-travis-coveralls
Browse files Browse the repository at this point in the history
begin adding travis ci and coveralls suppport
  • Loading branch information
rubixibuc committed Oct 18, 2018
2 parents 368d126 + 7a43a41 commit 15fb88c
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
language: node_js
node_js:
- "8"
before_deploy: npm run build
deploy:
provider: npm
email: rubixibuc@gmail.com
api_key:
secure: HrVRVSUkt2VDkbscO8Bg58gfQB3FAZy5vTJNrWTMYRP05NtwrKPJWeNSXsebg0BdCALyYfZ9iX3Nn9rJxFtAGQ+f9dC+M8pd6WnfLUwWu4Nmxl8qDIDzSrN0ahcLaubA9gzeL7EB2EWnRlZ848pbf+uaNaS53bxFZPCpY/WFLkUHf9+A3imE+6ak5CNFFRdIIHiGNs0Fua7+nytQ1jdDQ7Q3DU3p0KzAVak/0f/nosFDYrvQAaGWNFLYhon7j+MgFuGIqYUrZ6vFw4iiH7WYOkyDkD0SK/39ijbEY6HWt6ymdIOGd9L/kkmkPr4Q5HORLQwVVlEMXJG7Qxol64Er8Fjf0U62NVunkutcpHPxCOGc/K5MsYDdKoptlO52imdqW4BQbbexyrFSB7u9Y7b5kfvjoYrWIu4pHrTCMDH4WeptpFoh0pYMOsB2wGMVh8fQ1OErV2ASPoJLWBampH0H/PKERCJ+cpTolCACoDUnjD/zvyv5jdFKdSE5Bzo9sHtFSChp43uEJXJNJfKCawMh0zxigWaJOmwdJ0CSbNZKiTHA7F0YX21EyN8UMYkJrBoc6L19/XdiKQZwkGlLsOfolMadpIetWL/HlcIcn9SZyd3+Ga822PsgBXNuSQ3YHqWzelNSPzzk1Cc8Ld88n3N4NH8VY03mSt2Hp5cEOtFqJ90=
on:
tags: true
repo: rubixibuc/rerender
skip_cleanup: true
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
[![Build Status](https://travis-ci.org/rubixibuc/rerender.svg?branch=master)](https://travis-ci.org/rubixibuc/rerender) [![Coverage Status](https://coveralls.io/repos/github/rubixibuc/rerender/badge.svg?branch=master)](https://coveralls.io/github/rubixibuc/rerender?branch=master)

# Rerender

## React utility component library
Expand Down
40 changes: 40 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"description": "React utiltiy component library",
"main": "dist/rerender.js",
"scripts": {
"test": "jest --coverage",
"test": "jest --coverage --coverageReporters=text-lcov | coveralls",
"prettier": "prettier --write \"./lib/**/*.js\" webpack.config.js",
"build": "webpack --mode=production"
},
Expand All @@ -26,6 +26,7 @@
"@babel/preset-react": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-loader": "^8.0.2",
"coveralls": "^3.0.2",
"jest": "^23.6.0",
"prettier": "^1.14.3",
"react": "^16.0.0",
Expand Down

0 comments on commit 15fb88c

Please sign in to comment.