forked from Aerlinger/editor-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathappveyor.yml
More file actions
40 lines (32 loc) · 667 Bytes
/
appveyor.yml
File metadata and controls
40 lines (32 loc) · 667 Bytes
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
# appveyor file
# http://www.appveyor.com/docs/appveyor-yml
# Build version format
version: "{build}"
# Fix line endings on Windows
init:
- git config --global core.autocrlf true
environment:
matrix:
# node.js
- nodejs_version: "5"
platform:
- x86
- x64
install:
# Get the latest stable version of Node.js or io.js
- ps: Install-Product node $env:nodejs_version
- node --version
- npm --version
- npm install -g node-gyp
- npm install --ignore-scripts
build: off
test: off
# test_script:
# # Output useful info for debugging.
# - node --version
# - npm --version
# # run tests
# - npm test
branches:
only:
- master