aboutsummaryrefslogtreecommitdiff
path: root/.travis.yml
blob: 373ec4f3596a7740250d88ec4e2414d8851515ba (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}' yarn test --maxWorkers=$(nproc)

notifications:
    email: false