aboutsummaryrefslogtreecommitdiffstats
path: root/development/tools/appveyor.txt
diff options
context:
space:
mode:
authorThomas Huang <tmashuang@users.noreply.github.com>2018-04-18 01:01:09 +0800
committerGitHub <noreply@github.com>2018-04-18 01:01:09 +0800
commit7b70804aa0d74120098a4bcb2c375d29080e8368 (patch)
tree4e5addffa196d81502ff47743347e90421fe6e7b /development/tools/appveyor.txt
parentbdec1bc90b4f057eae77d2986b228c4ef2e7dfb8 (diff)
parent136caa2034e151763347d20488f2516277631bc9 (diff)
downloadtangerine-wallet-browser-7b70804aa0d74120098a4bcb2c375d29080e8368.tar.gz
tangerine-wallet-browser-7b70804aa0d74120098a4bcb2c375d29080e8368.tar.zst
tangerine-wallet-browser-7b70804aa0d74120098a4bcb2c375d29080e8368.zip
Merge pull request #3969 from MetaMask/i3966-AddJsDocsPage
Add JSDocs Page and Script
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