-
Notifications
You must be signed in to change notification settings - Fork 1
/
appveyor.yml
36 lines (35 loc) · 942 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
# install:
# - ps: Install-Product node '7'
# - npm install -g npm --silent --quiet
# - npm install --silent --quiet
#
# build: off
#
# test_script:
# - node --version
# - npm --version
# - git --version
# # Run tests sequentially to avoid io async issues
# - .\node_modules\.bin\nyc .\node_modules\.bin\mocha '%APPVEYOR_BUILD_FOLDER%\tests\lib\crc\*.spec.js'
# - .\node_modules\.bin\nyc .\node_modules\.bin\mocha '%APPVEYOR_BUILD_FOLDER%\tests\lib\crc\descriptors\*.spec.js'
#
# branches:
# only:
# - master
environment:
matrix:
- nodejs_version: '9'
- nodejs_version: '8'
install:
- ps: Install-Product node $env:nodejs_version
- npm i npm@latest -g
- npm install
matrix:
fast_finish: true
build: off
shallow_clone: true
clone_depth: 1
test_script:
- node --version
- npm --version
- C:\projects\common-vocabulary\node_modules\.bin\jest --config=C:\projects\common-vocabulary\jest.config.json