Skip to content
This repository has been archived by the owner on Jan 2, 2020. It is now read-only.

Added travis and fixed eslint #20

Merged
merged 19 commits into from
Oct 20, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@
npm-debug.log*
node_modules/
.node_repl_history
build/
27 changes: 27 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
sudo: false

os:
- linux
- osx

language: node_js

node_js:
- '8'

cache:
directories:
- node_modules

before_install:
- npm install -g npm@latest
- npm install --dev
- npm install
- npm install -g eslint electron electron-packager

script:
- eslint .
- npm run react-test
- npm run react-build
- npm run build
- npm start &
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
# bench-routes-electron
[![DeepScan grade](https://deepscan.io/api/teams/5815/projects/7644/branches/80653/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=5815&pid=7644&bid=80653)

UI application for [bench-routes](https://github.com/zairza-cetb/bench-routes).
Daemon service for [bench-routes](https://github.com/zairza-cetb/bench-routes).

## Making Commits in bench-routes
Bench Routes uses DCO(Developer Certificate Origin) to certify that the contributor wrote the partcular code or otherwise have the right to submit the code they are contributing to the project.For complete details on DCO <a href="https://probot.github.io/apps/dco/" target="_blank">Click Here</a>.

Follow the below `commit` syntax to cerify the code and pass the DCO test.
```
git commit -s -m <commit-message>
```

For installation instructions, please head-over to [INSTALL.md](INSTALL.md).

Expand Down
Loading