File: appveyor.yml

package info (click to toggle)
node-shelljs 0.8.5%2B~cs0.8.10-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 1,616 kB
  • sloc: javascript: 6,944; makefile: 2
file content (30 lines) | stat: -rw-r--r-- 565 bytes parent folder | download | duplicates (2)
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
30
environment:
  matrix:
    - nodejs_version: '9'
    - nodejs_version: '8'
    - nodejs_version: '7'
    - nodejs_version: '6'
    - nodejs_version: '5'
    - nodejs_version: '4'

version: '{build}'

# Install scripts. (runs after repo cloning)
install:
  - ps: Install-Product node $env:nodejs_version
  - set PATH=%APPDATA%\npm;%PATH%
  - node --version
  - npm --version
  - npm run ci-or-install

matrix:
  fast_finish: false

# No need for MSBuild on this project
build: off

test_script:
  - npm test

on_success:
  - npm run codecov -- -f coverage/lcov.info