-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
36 lines (36 loc) · 841 Bytes
/
appveyor.yml
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
31
32
33
34
35
36
build: off
cache:
- '%APPDATA%\npm-cache'
clone_depth: 1
skip_branch_with_pr: true
skip_commits:
files:
- '**/*.md'
configuration:
- FreshDeps
- LockedDeps
environment:
matrix:
- nodejs_version: 9
- nodejs_version: 8
- nodejs_version: 6
- nodejs_version: 4
matrix:
fast_finish: true
exclude:
- configuration: FreshDeps
nodejs_version: 9
- configuration: FreshDeps
nodejs_version: 6
- configuration: FreshDeps
nodejs_version: 4
install:
- ps: Install-Product node $env:nodejs_version
- npm install --global npm@5.6.0
- npm --version
- git config core.symlinks true
- git reset --hard
- if %configuration% == FreshDeps (npm install --no-shrinkwrap --prefer-online)
- if %configuration% == LockedDeps (npm install --prefer-offline)
test_script:
- npm run test-win