UNPKG

440 BYAMLView Raw
1environment:
2 nodejs_version: "6"
3
4# Install scripts. (runs after repo cloning)
5
6install:
7 # Get the latest stable version of Node.js or io.js
8 - ps: Install-Product node $env:nodejs_version
9 # install modules
10 - yarn
11
12# Post-install test scripts.
13test_script:
14 # Output useful info for debugging.
15 - node --version
16 - yarn --version
17 # run tests
18 - yarn test
19
20# Don't actually build.
21build: off
22
23cache:
24 - "%LOCALAPPDATA%\\Yarn"