From d9701a7eb13a0fd96df9ca7b684eaaed83888d4a Mon Sep 17 00:00:00 2001 From: Maxim Shoshin Date: Thu, 28 Jun 2018 09:54:12 +0300 Subject: [PATCH] Add Continious Integration via Travis CI --- .travis.yml | 11 +++++++++++ README.md | 4 ++++ 2 files changed, 15 insertions(+) create mode 100644 .travis.yml diff --git a/.travis.yml b/.travis.yml new file mode 100644 index 0000000..a5b048a --- /dev/null +++ b/.travis.yml @@ -0,0 +1,11 @@ +language: node_js + +node_js: + - "8" + +install: + - npm install + +script: + - npm run lint + - npm run build diff --git a/README.md b/README.md index a65e724..23d1efe 100644 --- a/README.md +++ b/README.md @@ -2,6 +2,10 @@ This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 1.7.3. +## Build via Travis CI + +Build status: ![Build Status](https://travis-ci.com/MaxShoshin/DotNetRuWebUI.svg?branch=master) + ## Development server Run `ng serve` for a dev server. Navigate to `http://localhost:4200/`. The app will automatically reload if you change any of the source files.