Revision d29f6621888fe688548958905cc7f47dc0051060 authored by Kees Kluskens on 17 November 2016, 19:50:18 UTC, committed by Kees Kluskens on 17 November 2016, 19:50:18 UTC
With the current issue template, people often won't know what to remove exactly.
With the new template, users only have to fill in the questions and optionally
can remove the hints. Since the hints are HTML comments, they won't appear in
the issue.

Inspired by Yarn's great issue template: https://raw.githubusercontent.com/yarnpkg/yarn/master/.github/ISSUE_TEMPLATE.md
1 parent 027c5a8
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