blob: ed2b6114bac33c6ed7e15c2bd18e102ce28ec71e [file] [log] [blame]
#!/bin/bash -ex
# Install Node
apt-get install nodejs
# Install NPM
apt-get install npm
# Install npm deps
npm install
typings install
# Check code style
npm run lint
# Execute tests
npm test