Layne Anderson
2017-01-08 583af6d199035baa66dd99bf7cbc9014e5ad0ff3
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
language: node_js
sudo: false
os:
  - linux
  - windows
node_js:
  - '4'
  - '5'
  - '6'
  - 'stable'
script:
  - npm run lint
  - npm run test:typings
  - npm run test
before_install:
  - curl -o- -L https://yarnpkg.com/install.sh | bash
  - export PATH=$HOME/.yarn/bin:$PATH
cache:
  yarn: true
  directories:
    - node_modules