We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 573e563 commit 42141c0Copy full SHA for 42141c0
appveyor.yml
@@ -1,21 +1,17 @@
1
-# Test against the latest version of this Node.js version
2
environment:
3
- nodejs_version: "6"
+ nodejs_version: "8"
4
5
-# Install scripts. (runs after repo cloning)
6
install:
7
- # Get the latest stable version of Node.js or io.js
8
- ps: Install-Product node $env:nodejs_version
9
- # install modules
10
- - npm install
+ - yarn
11
12
-# Post-install test scripts.
13
test_script:
14
- # Output useful info for debugging.
+ - git --version
15
- node --version
16
- - npm --version
17
- # run tests
18
- - npm test
+ - yarn --version
+ - yarn test
+
+cache:
+ - node_modules -> yarn.lock
19
20
-# Don't actually build.
21
build: off
0 commit comments