Skip to content

Commit 172eaa0

Browse files
author
Kelly Selden
committed
Create appveyor.yml
1 parent 4654f2b commit 172eaa0

1 file changed

Lines changed: 25 additions & 0 deletions

File tree

appveyor.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
environment:
2+
matrix:
3+
- nodejs_version: "8"
4+
5+
# Fix line endings in Windows. (runs before repo cloning)
6+
init:
7+
- git config --global core.autocrlf true
8+
9+
# Install scripts. (runs after repo cloning)
10+
install:
11+
- ps: Install-Product node $env:nodejs_version
12+
- npm install
13+
14+
# Post-install test scripts.
15+
test_script:
16+
- node --version
17+
- npm --version
18+
- npm test
19+
20+
# http://help.appveyor.com/discussions/questions/1310-delete-cache
21+
cache:
22+
- node_modules -> package.json
23+
24+
# Don't actually build.
25+
build: off

0 commit comments

Comments
 (0)