Skip to content

Commit

Permalink
feat(travis): add travis.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
SvenWesterlaken committed Mar 24, 2018
1 parent bccbaaf commit d51e70c
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
branches:
only:
- master
- /^.*travis.*$/

except:
- /^v\d+\.\d+\.\d+$/

sudo: required
dist: trusty
group: deprecated-2017Q4

language: node_js
node_js:
- '9'
- '8'
- '6'
- '4'

addons:
apt:
sources:
- sourceline: 'deb https://debian.neo4j.org/repo stable/'
key_url: 'https://debian.neo4j.org/neotechnology.gpg.key'
packages:
- neo4j

services:
- mongodb

cache:
directories:
- ~/.npm

notifications:
email: false

before_script:
- sleep 15

after_success:
- npm run cover
- npm run coveralls
- npm run travis-deploy-once "npm run semantic-release"

0 comments on commit d51e70c

Please sign in to comment.