forked from rrdelaney/reason-scripts
-
Notifications
You must be signed in to change notification settings - Fork 2
/
appveyor.yml
42 lines (33 loc) · 825 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
33
34
35
36
37
38
39
40
41
42
image: Visual Studio 2017
environment:
matrix:
- nodejs_version: 7
test_suite: "simple"
- nodejs_version: 7
test_suite: "installs"
- nodejs_version: 6
test_suite: "simple"
- nodejs_version: 6
test_suite: "installs"
cache:
- node_modules -> package.json
matrix:
fast_finish: true
platform:
- x64
install:
# TODO: Remove after https://github.com/appveyor/ci/issues/1426 is fixed
- set PATH=C:\Program Files\Git\mingw64\bin;%PATH%
- ps: Install-Product node $env:nodejs_version $env:platform
- cmd: npm install -g bs-platform
build: off
skip_commits:
files:
- '**/*.md'
test_script:
- node --version
- npm --version
- sh tasks/e2e-%test_suite%.sh
# TODO:
# USE_YARN=yes tasks/e2e... when
# https://github.com/yarnpkg/yarn/pull/3848 lands in a release