Skip to content

Commit

Permalink
added travis ci
Browse files Browse the repository at this point in the history
  • Loading branch information
calidion committed Apr 12, 2019
1 parent 4b545dd commit bdcb15c
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 1 deletion.
40 changes: 40 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# http://docs.travis-ci.com/user/workers/container-based-infrastructure/
sudo: false

# http://docs.travis-ci.com/user/languages/javascript-with-nodejs/
language: node_js
node_js:
- 8
- 10

# https://docs.travis-ci.com/user/languages/javascript-with-nodejs#Node.js-v4-(or-io.js-v3)-compiler-requirements
env:
- CXX=g++-4.8
addons:
apt:
sources:
- ubuntu-toolchain-r-test
packages:
- g++-4.8

cache:
directories:
- $HOME/.npm
- node_modules

# http://docs.travis-ci.com/user/build-lifecycle/
before_install:
- curl https://sh.rustup.rs -sSf | sh -s -- -y
- source "$HOME/.cargo/env"

install:
- npm install
- npm run build

# http://docs.travis-ci.com/user/pull-requests/
script:
- npm test
- npm run lint

notifications:
email: false
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
# neon-vigcoin
# @vigcoin/neon

The vigcoin neon is an vigcoin native application interface for node.js.

It includes and will include

1. Wallet APIs
2. BlockChain / Transaction APIs
3. Node APIs
4. P2P APIs
5. Service APIs



0 comments on commit bdcb15c

Please sign in to comment.