blob: 3be3e00fc9f24ffa5aec3c12b22878700dd1082d [file] [log] [blame]
#!/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