Skip to content

Commit

Permalink
Travis configuration changes
Browse files Browse the repository at this point in the history
  • Loading branch information
armenzg committed Feb 14, 2018
1 parent d3c9e8c commit d7c9acb
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,21 @@
dist: trusty
language: node_js
cache: yarn
node_js:
- '8'
env:
global:
- REDIS_URL=redis://localhost:6379
install: npm install
install:
- yarn install --frozen-lockfile
before_install:
- curl -sSfL https://yarnpkg.com/install.sh | bash # Required due to: https://github.com/travis-ci/travis-ci/issues/7951
- export PATH=$HOME/.yarn/bin:$PATH
after_failure:
- yarn build -- --inspect
script:
- npm test
- yarn build
- yarn test
services:
- 'redis-server'
after_success: npm run coverage

0 comments on commit d7c9acb

Please sign in to comment.