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 9fc365a commit 63b1a31Copy full SHA for 63b1a31
.gitignore
@@ -1,4 +1,3 @@
1
node_modules
2
-prebuilds
3
build
4
*.log
appveyor.yml
@@ -0,0 +1,26 @@
+image: Visual Studio 2015
+
+environment:
+ NODEJS_VERSION: "8"
5
6
+platform:
7
+ - x64
8
+ - x86
9
10
+install:
11
+ - ps: Install-Product node $env:NODEJS_VERSION $env:Platform
12
+ - node --version
13
+ - yarn --version
14
+ - yarn install
15
16
+test_script:
17
+ - yarn run test
18
19
+build: off
20
21
+branches:
22
+ only:
23
+ - master
24
25
+deploy_script:
26
+ - IF "%APPVEYOR_REPO_TAG%" == "true" (yarn run prebuild && yarn run prebuild:upload -u %PREBUILD_UPLOAD%)
0 commit comments