Revision a26f094a81eae8b3b740e9ac5bfc1b198a81ffd2 authored by Tobias Koppers on 15 December 2016, 22:35:13 UTC, committed by GitHub on 15 December 2016, 22:35:13 UTC
fix html-webpack-plugin link address
2 parent s 2393cd2 + 79fc84a
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