UNPKG

374 BYAMLView Raw
1# appveyor file
2# http://www.appveyor.com/docs/appveyor-yml
3
4init:
5 - git config --global core.autocrlf input
6
7environment:
8 matrix:
9 - nodejs_version: 10
10
11install:
12 - ps: Install-Product node $env:nodejs_version
13 - npm install
14 - npm install -g grunt-cli
15 - npm build
16
17build: off
18
19test_script:
20 - node --version
21 - npm --version
22 - cmd: grunt test --no-color