aboutsummaryrefslogtreecommitdiffstats
path: root/development/tools/appveyor.txt
diff options
context:
space:
mode:
authorDan Finlay <dan@danfinlay.com>2018-04-13 05:39:28 +0800
committerDan Finlay <dan@danfinlay.com>2018-04-13 05:46:05 +0800
commit136caa2034e151763347d20488f2516277631bc9 (patch)
tree0b8d09b0f9003092611b37acf48ffc67e718cbd8 /development/tools/appveyor.txt
parent29dab1e9e00c1c1e6ad834026df51b2839d3171d (diff)
downloadtangerine-wallet-browser-136caa2034e151763347d20488f2516277631bc9.tar.gz
tangerine-wallet-browser-136caa2034e151763347d20488f2516277631bc9.tar.zst
tangerine-wallet-browser-136caa2034e151763347d20488f2516277631bc9.zip
Add JSDocs Page and Script
Includes new script `npm run doc` for generating docs page.
Diffstat (limited to 'development/tools/appveyor.txt')
-rw-r--r--development/tools/appveyor.txt21
1 files changed, 21 insertions, 0 deletions
diff --git a/development/tools/appveyor.txt b/development/tools/appveyor.txt
new file mode 100644
index 000000000..4ed974079
--- /dev/null
+++ b/development/tools/appveyor.txt
@@ -0,0 +1,21 @@
+# Test against the latest version of this Node.js version
+environment:
+ nodejs_version: "8"
+
+# Install scripts. (runs after repo cloning)
+install:
+ # Get the latest stable version of Node.js or io.js
+ - ps: Install-Product node $env:nodejs_version
+ # install modules
+ - npm install
+
+# Post-install test scripts.
+test_script:
+ # Output useful info for debugging.
+ - node --version
+ - npm --version
+ # run tests
+ - npm test
+
+# Don't actually build.
+build: off