Revision bd10fca49a258d7b8fb9a0415067717bb0fe8a1c authored by Tobias Koppers on 14 December 2016, 11:03:24 UTC, committed by Tobias Koppers on 21 December 2016, 22:39:39 UTC
1 parent 53c0f68
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: Install-Product node (Get-NodeJsLatestBuild $env:nodejs_version) x64
  - 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