Merge pull request #85 from maraoz/travis

Add Travis CI
pull/86/head
Manuel Aráoz 8 years ago committed by GitHub
commit a61ee27349
  1. 12
      .travis.yml
  2. 5
      package.json

@ -0,0 +1,12 @@
dist: trusty
sudo: false
group: beta
language: node_js
node_js:
- "6"
before_install:
- npm i -g ethereumjs-testrpc
- npm i -g truffle
script:
- testrpc&
- npm test

@ -3,7 +3,10 @@
"version": "0.0.11",
"description": "Secure Smart Contract library for Solidity",
"main": "truffle.js",
"devDependencies": {},
"devDependencies": {
"ethereumjs-testrpc": "^3.0.2",
"truffle": "^2.1.1"
},
"scripts": {
"test": "truffle test",
"install": "scripts/install.sh"

Loading…
Cancel
Save