forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
32 lines (26 loc) · 813 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
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'))
install:
- ps: Install-Product node $env:nodejs_version x64
- node --version
- curl -fsSL -o yarn.js https://github.com/yarnpkg/yarn/releases/download/v1.3.2/yarn-1.3.2.js
- node ./yarn.js --version
- node ./yarn.js install
- node ./yarn.js run build
cache:
- node_modules
- .eslintcache
test_script:
- node ./yarn.js run jest --color
# Don't actually build.
build: off
notifications:
- provider: Email
on_build_success: false
on_build_failure: false
on_build_status_changed: false