forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
31 lines (25 loc) · 696 Bytes
/
appveyor.yml
File metadata and controls
31 lines (25 loc) · 696 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
environment:
matrix:
- nodejs_version: '8'
init:
# debugging Appveyor build. More info:
# https://www.appveyor.com/docs/how-to/rdp-to-build-worker/
- ps: iex ((new-object net.webclient).DownloadString('https://raw.githubusercontent.com/appveyor/ci/master/scripts/enable-rdp.ps1'))
- git config --global core.symlinks true
install:
- ps: Install-Product node $env:nodejs_version x64
- node --version
- yarn
cache:
- node_modules
- .eslintcache
- "%LOCALAPPDATA%\\Yarn"
test_script:
- yarn jest --color
# Don't actually build.
build: off
notifications:
- provider: Email
on_build_success: false
on_build_failure: false
on_build_status_changed: false