Adding XOS GUI Unit Test verification job

Change-Id: Ibccfe351a3b763fa0bc34878afe6c0151aa1f59e
diff --git a/jjb/cord/cord-xos-gui-unit.sh b/jjb/cord/cord-xos-gui-unit.sh
new file mode 100644
index 0000000..3be3e00
--- /dev/null
+++ b/jjb/cord/cord-xos-gui-unit.sh
@@ -0,0 +1,17 @@
+#!/bin/bash -ex
+
+# Install Node
+sudo apt-get install nodejs
+
+# Install NPM
+sudo apt-get install npm
+
+# Install npm deps
+npm install
+typings install
+
+# Check code style
+npm run lint
+
+# Execute tests
+npm test
\ No newline at end of file