We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6043b7c commit 9f4412aCopy full SHA for 9f4412a
appveyor.yml
@@ -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