Revision c6fa39b48217983b3a498ad906fa630356694621 authored by Seul-gi Choi(Chase) on 12 March 2019, 21:31:04 UTC, committed by Alex Lam S.L on 12 March 2019, 21:31:04 UTC
fix anchor for mangle-options
1 parent 9aae4f2
Raw File
.travis.yml
addons:
  apt:
    sources:
      - ubuntu-toolchain-r-test
    packages:
      - libstdc++-4.9-dev
cache:
  directories: tmp
language: generic
matrix:
  fast_finish: true
sudo: false
env:
  global:
    - UGLIFYJS_TEST_ALL=1
  matrix:
    - NODEJS_VER=node/0.10
    - NODEJS_VER=node/0.12
    - NODEJS_VER=node/4
    - NODEJS_VER=node/6
    - NODEJS_VER=node/8
    - NODEJS_VER=node/latest
before_install:
  - git clone --branch v1.4.2 --depth 1 https://github.com/jasongin/nvs.git ~/.nvs
  - . ~/.nvs/nvs.sh
  - nvs --version
install:
  - nvs add $NODEJS_VER
  - nvs use $NODEJS_VER
  - node --version
  - npm --version --no-update-notifier
  - npm install --no-optional --no-save --no-update-notifier
script:
  - npm test --no-update-notifier
back to top