forked from ranisalt/node-argon2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
44 lines (34 loc) · 980 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
# http://www.appveyor.com/docs/appveyor-yml
#---------------------------------#
# environment configuration #
#---------------------------------#
# Operating system (build VM template)
os: Visual Studio 2015
# Skipping commits with particular message
skip_commits:
message: /\[ci skip\]/
# environment variables
environment:
matrix:
- nodejs_version: 8
- nodejs_version: 10
- nodejs_version: 11
# scripts that run after cloning repository
install:
- ps: Install-Product node $env:nodejs_version
- git submodule update --init --recursive
#---------------------------------#
# build configuration #
#---------------------------------#
build_script:
- cmd: npm install
#---------------------------------#
# tests configuration #
#---------------------------------#
# scripts to run before tests
before_test:
- node --version
- npm --version
# to run your custom scripts instead of automatic tests
test_script:
- npm test