gluon-web-remote

Web remote Administration for big size of gluon routers
git clone git://archive.git.mtrnord.blog/MTRNord/gluon-web-remote.git
Log | Files | Refs | README

commit 31c327c5e225de1314e65d131b921905f12b6eec
parent d03e6415f8b1669146290a2dca7d6695c351a3a5
Author: Marcel <MTRNord@users.noreply.github.com>
Date:   Sat, 17 Sep 2016 13:33:16 +0200

Create appveyor.yml
Diffstat:
Aappveyor.yml | 21+++++++++++++++++++++
1 file changed, 21 insertions(+), 0 deletions(-)

diff --git a/appveyor.yml b/appveyor.yml @@ -0,0 +1,21 @@ +# Test against this version of Node.js +environment: + nodejs_version: "6.6.0" + +# 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