1 |
|
2 |
|
3 |
|
4 | environment:
|
5 | MOCHA_REPORTER: "mocha-appveyor-reporter"
|
6 | matrix:
|
7 | - nodejs_version: "8"
|
8 |
|
9 | branches:
|
10 | only:
|
11 | - master
|
12 |
|
13 |
|
14 | install:
|
15 | - ps: Install-Product node $env:nodejs_version
|
16 | - appveyor-retry npm i -g npm@^4
|
17 | - appveyor-retry yarn
|
18 | - appveyor-retry yarn add mocha-appveyor-reporter
|
19 |
|
20 | cache:
|
21 | - '%LOCALAPPDATA%\Yarn'
|
22 | - '%APPDATA%\Roaming\bower'
|
23 |
|
24 |
|
25 | test_script:
|
26 |
|
27 | - git rev-parse HEAD
|
28 | - cmd: yarn run test:all
|
29 |
|
30 |
|
31 | build: off
|
32 |
|
33 |
|
34 | version: "{build}"
|