Skip to content

Commit 63b1a31

Browse files
committed
Add appveyor.yml file.
1 parent 9fc365a commit 63b1a31

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
node_modules
2-
prebuilds
32
build
43
*.log

appveyor.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
image: Visual Studio 2015
2+
3+
environment:
4+
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

Comments
 (0)