aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: f9bcfe7e37b0bcfc8edc3b8fe4e9a9d1d01344d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
language: node

cache: yarn

before_install:
    - nvm install node
    - export NODE=$(nvm which node)
    - export NPM=${NODE%node}npm
    - $NPM install -g yarn

install:
    - yarn

script:
    - yarn build
    - travis_wait yarn test

notifications:
    email: false