File: appveyor.yml

package info (click to toggle)
node-v8flags 3.1.2-3
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 188 kB
  • sloc: makefile: 17; sh: 4
file content (29 lines) | stat: -rw-r--r-- 566 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# http://www.appveyor.com/docs/appveyor-yml
# http://www.appveyor.com/docs/lang/nodejs-iojs

environment:
  matrix:
    # node.js
    - nodejs_version: "0.10"
    - nodejs_version: "0.12"
    - nodejs_version: "4"
    - nodejs_version: "6"
    - nodejs_version: "8"
    - nodejs_version: "10"

install:
  - ps: Install-Product node $env:nodejs_version
  - npm install

test_script:
  - node --version
  - npm --version
  # power shell
  - ps: "npm test # PowerShell"
  # standard command line
  - cmd: npm test

build: off

# build version format
version: "{build}"