blob: 3be3e00fc9f24ffa5aec3c12b22878700dd1082d [file] [log] [blame]
Luca Prete74fa3222018-03-02 15:46:14 -08001#!/bin/bash -ex
2
3# Install Node
4sudo apt-get install nodejs
5
6# Install NPM
7sudo apt-get install npm
8
9# Install npm deps
10npm install
11typings install
12
13# Check code style
14npm run lint
15
16# Execute tests
17npm test