forked from jestjs/jest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
32 lines (27 loc) · 821 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: "4"
- nodejs_version: "6"
install:
- ps: Install-Product node $env:nodejs_version x64
- node --version
- yarn --version
- yarn install
cache:
- node_modules
- .eslintcache
test_script:
- yarn run build
# Some snapshot tests don't currently work on Windows, so the tests are
# commented out. Jest complains that obsolete snapshot files exist, so the
# "-u" will just delete those snapshots when running in the AppVeyor run,
# instead of failing the build. Note that this means that all snapshot tests
# WILL ALWAYS PASS, as it updates the snapshots.
- yarn run jest -- -u --color
# Don't actually build.
build: off
notifications:
- provider: Email
on_build_success: false
on_build_failure: false
on_build_status_changed: false