We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent adcf980 commit 543b62cCopy full SHA for 543b62c
appveyor.yml
@@ -0,0 +1,37 @@
1
+image: Visual Studio 2017
2
+
3
+# Fix line endings in Windows. (runs before repo cloning)
4
+init:
5
+ - git config --global core.autocrlf input
6
7
+environment:
8
+ matrix:
9
+ - nodejs_version: 8
10
11
+# Finish on first failed build
12
+matrix:
13
+ fast_finish: true
14
15
+platform:
16
+ - x64
17
18
+branches:
19
+ only:
20
+ - master
21
22
+# Disable Visual Studio build and deploy
23
+build: off
24
+deploy: off
25
26
+install:
27
+ - ps: Install-Product node $env:nodejs_version $env:platform
28
+ - yarn install
29
30
+test_script:
31
+ - node --version
32
+ - yarn build
33
+ - yarn test
34
35
+cache:
36
+ - node_modules
37
+ - "%LOCALAPPDATA%/Yarn"
0 commit comments