forked from facebook/create-react-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
appveyor.yml
54 lines (46 loc) · 1.22 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
image: Visual Studio 2017
environment:
APPVEYOR_SAVE_CACHE_ON_ERROR: true
APPVEYOR_BUILD_WORKER_CLOUD: 'GCE'
matrix:
- nodejs_version: 10
test_suite: 'simple'
- nodejs_version: 10
test_suite: 'installs'
- nodejs_version: 10
test_suite: 'kitchensink'
- nodejs_version: 10
test_suite: 'kitchensink-eject'
- nodejs_version: 8
test_suite: 'simple'
- nodejs_version: 8
test_suite: 'installs'
- nodejs_version: 8
test_suite: 'kitchensink'
- nodejs_version: 8
test_suite: 'kitchensink-eject'
cache:
- '%APPDATA%\npm-cache -> appveyor.cleanup-cache.txt'
- '%LOCALAPPDATA%\Yarn\Cache -> appveyor.cleanup-cache.txt'
clone_depth: 50
matrix:
fast_finish: true
allow_failures:
- test_suite: 'installs'
platform:
- x64
install:
- ps: Install-Product node $env:nodejs_version $env:platform
- ps: |
(New-Object Net.WebClient).DownloadFile("https://yarnpkg.com/latest.msi", "$env:temp\yarn.msi")
cmd /c start /wait msiexec.exe /i $env:temp\yarn.msi /quiet /qn /norestart
build: off
skip_commits:
files:
- '**/*.md'
test_script:
- node --version
- npm --version
- yarn --version
- yarn cache dir
- bash tasks/e2e-%test_suite%.sh