Skip to content

Commit 9f4412a

Browse files
DaRamirezSotoDaRamirezSoto
DaRamirezSoto
authored and
DaRamirezSoto
committed
Add appveyor configuration file
1 parent 6043b7c commit 9f4412a

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

appveyor.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Should we cache local modules ?
2+
# cache:
3+
# - node_modules
4+
5+
environment:
6+
matrix:
7+
- nodejs_version: "6"
8+
- nodejs_version: "7"
9+
- nodejs_version: "8"
10+
11+
platform:
12+
- x86
13+
- x64
14+
15+
install:
16+
- ps: Install-Product node $env:nodejs_version $env:platform
17+
- npm install
18+
19+
test_script:
20+
- node --version
21+
- npm --version
22+
- IF %nodejs_version% EQU 7 npm run travis:lint
23+
- npm run test
24+
25+
build: off

0 commit comments

Comments
 (0)