Skip to content

Commit

Permalink
Added JS linting to travis (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsjen authored Dec 12, 2018
1 parent f6eb320 commit e723ece
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,16 @@ language:
- python
python:
- "2.7"
before_install:
- nvm install 10.13.0
stages:
- PR checks ✅
- name: "Ship It \U0001F6A2"
if: branch=master AND type=push
install:
- make requirements-local.py
- npm install
jobs:
include:
- stage: PR checks ✅
env:
- NAME=Validation Checks
script: "./.travis/validate_changes_for_merge.sh"
- stage: "Ship It \U0001F6A2"
env:
- NAME=Publish
1 change: 1 addition & 0 deletions .travis/validate_changes_for_merge.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,5 @@

EXIT_STATUS=0
pylint server || EXIT_STATUS=$?
cd client && npm run lint || EXIT_STATUS=$?
exit $EXIT_STATUS

0 comments on commit e723ece

Please sign in to comment.