Skip to content

Commit

Permalink
Use yarn instead of npm
Browse files Browse the repository at this point in the history
  • Loading branch information
jbmusso committed Jun 2, 2017
1 parent d870a63 commit abe9191
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,18 +9,21 @@ sudo: required
env:
- GREMLINSERVER_VERSION="3.2.4"

cache:
yarn: true

install:
# install Oracle JDK8
- sh -c ./build/jdk8-install.sh
# install gremlin-server
- sh -c ./build/gremlin-server/install.sh
# install dependencies
- npm install
- yarn

before_script:
- npm run build
- yarn build

script: npm run test:node
script: yarn test

after_script:
- npm run coverage:travis
- yarn coverage:travis

0 comments on commit abe9191

Please sign in to comment.