We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4654f2b commit 172eaa0Copy full SHA for 172eaa0
1 file changed
appveyor.yml
@@ -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