File: appveyor.yml

package info (click to toggle)
node-type-detect 4.0.8-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 528 kB
  • sloc: javascript: 997; makefile: 4
file content (21 lines) | stat: -rw-r--r-- 314 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
version: '{build}'

skip_tags: true
skip_branch_with_pr: true
clone_depth: 1
deploy: off
build: off

install:
  - ps: Install-Product node '8'
  - npm i -g npm@5
  - npm install

test_script:
  - node --version
  - npm --version
  - npm test

cache:
  - node_modules -> package-lock.json
  - '%APPDATA%\npm-cache'