appveyor.yml 897 Bytes
Newer Older
Darren Scerri's avatar
Darren Scerri committed
1
2
image: Visual Studio 2017

Joe Haddad's avatar
Joe Haddad committed
3
4
environment:
  matrix:
5
    - nodejs_version: 8
6
      test_suite: "simple"
7
    - nodejs_version: 8
8
      test_suite: "installs"
9
    - nodejs_version: 8
10
      test_suite: "kitchensink"
Joe Haddad's avatar
Joe Haddad committed
11
12
13
14
15
16
17
18
    - nodejs_version: 6
      test_suite: "simple"
    - nodejs_version: 6
      test_suite: "installs"
    - nodejs_version: 6
      test_suite: "kitchensink"

cache:
19
20
  - node_modules -> appveyor.cleanup-cache.txt
  - packages\react-scripts\node_modules -> appveyor.cleanup-cache.txt
Joe Haddad's avatar
Joe Haddad committed
21
22
23
24
25
26
27
28
29
30

clone_depth: 50

matrix:
  fast_finish: true

platform:
  - x64

install:
Darren Scerri's avatar
Darren Scerri committed
31
32
  # TODO: Remove after https://github.com/appveyor/ci/issues/1426 is fixed
  - set PATH=C:\Program Files\Git\mingw64\bin;%PATH%
Joe Haddad's avatar
Joe Haddad committed
33
34
35
36
  - ps: Install-Product node $env:nodejs_version $env:platform

build: off

37
38
39
40
skip_commits:
  files:
    - '**/*.md'

Joe Haddad's avatar
Joe Haddad committed
41
42
43
44
test_script:
  - node --version
  - npm --version
  - sh tasks/e2e-%test_suite%.sh