-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathappveyor.yml
More file actions
36 lines (35 loc) · 988 Bytes
/
Copy pathappveyor.yml
File metadata and controls
36 lines (35 loc) · 988 Bytes
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: '8'
- nodejs_version: '6'
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\eslint-plugin-crc\node_modules\.bin\nyc C:\projects\eslint-plugin-crc\node_modules\.bin\mocha C:\projects\eslint-plugin-crc\tests\**\*.spec.js