aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 91815693df5991ed99e6e4c83345b6ce7e3642f7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
sudo: false
dist: trusty
language: node_js

cache: yarn

matrix:
  include:
    - node_js: 6
    - node_js: 8
    - node_js: node

before_install:
  - 'if [[ `npm -v` != 5* ]]; then npm i -g npm@^5.0.0; fi'
  - nvm --version
  - node --version
  - npm --version

script:
    - yarn lint
    - FENGARICONF='{"LUAI_MAXSTACK":100000}' travis_wait yarn test --maxWorkers=$(nproc)

notifications:
    email: false