File: appveyor.yml

package info (click to toggle)
node-asynckit 0.5.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 344 kB
  • sloc: javascript: 3,704; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 397 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
environment:
  matrix:
    - nodejs_version: '0.12'
    - nodejs_version: '3'
    - nodejs_version: '4'
    - nodejs_version: '5'
    - nodejs_version: '6'
platform:
  - x86
  - x64
install:
  - ps: Install-Product node $env:nodejs_version $env:platform
  - npm install
test_script:
  - node --version
  - npm --version
  - npm run lint
  - npm run win-test
build: off
matrix:
  fast_finish: true