Revision d4b73ec8466d25103d26109f45dc6c08cc6c02ac authored by Alan Zhang on 11 November 2016, 17:58:50 UTC, committed by Alan Zhang on 11 November 2016, 17:58:50 UTC
1 parent f9502b6
Raw File
appveyor.yml
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml

init:
  - git config --global core.autocrlf input

# what combinations to test
environment:
  matrix:
    - nodejs_version: 6

install:
  - ps: Update-NodeJsInstallation (Get-NodeJsLatestBuild $env:nodejs_version)
  - npm install yarn -g
  - yarn install
  - yarn link
  - yarn link webpack

build: off

matrix:
  fast_finish: true

test_script:
  - node --version
  - npm --version
  - yarn --version
  - cmd: npm run appveyor
back to top