-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathappveyor.yml
44 lines (37 loc) · 982 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
37
38
39
40
41
42
43
44
---
#---------------------------------#
# general configuration #
#---------------------------------#
branches:
only:
- master
except:
- gh-pages
skip_tags: true
#---------------------------------#
# environment configuration #
#---------------------------------#
shallow_clone: true
clone_depth: 1
environment:
matrix:
- nodejs_version: 14
- nodejs_version: 15
install:
- ps: Install-Product node $env:nodejs_version
- npm config set loglevel error
- npm install
- npm i . -g
#---------------------------------#
# build configuration #
#---------------------------------#
build: off
#---------------------------------#
# tests configuration #
#---------------------------------#
test_script:
- node --version
- npm --version
- npm test