blob: ed2b6114bac33c6ed7e15c2bd18e102ce28ec71e [file] [log] [blame]
Luca Prete74fa3222018-03-02 15:46:14 -08001#!/bin/bash -ex
2
3# Install Node
Luca Preteb411d422018-03-02 16:12:35 -08004apt-get install nodejs
Luca Prete74fa3222018-03-02 15:46:14 -08005
6# Install NPM
Luca Preteb411d422018-03-02 16:12:35 -08007apt-get install npm
Luca Prete74fa3222018-03-02 15:46:14 -08008
9# Install npm deps
10npm install
11typings install
12
13# Check code style
14npm run lint
15
16# Execute tests
17npm test