Skip to content

Commit

Permalink
Fix dependencies version for client
Browse files Browse the repository at this point in the history
Remove cache from CI config

Travis cache was reason of CI errors
  • Loading branch information
imago-dzarne committed Nov 8, 2019
1 parent 93d7c27 commit 41c6171
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 11 deletions.
6 changes: 1 addition & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ install:
- pip install pylint
# for eslint
- npm install ms
- npm install --only=dev
- npm install

before_script:
- psql -c 'create database test;' -U postgres
Expand All @@ -36,7 +36,3 @@ script:
- find -name "*.py" -not -path "./server/alembic/versions/*" -not -path "./.git/*" ! -name "setup.py" | xargs pylint --disable=R0801
- python3 -m tornado.testing server/test/runtests.py
- npm run lint

cache:
directories:
- node_modules
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
"moment": "^2.22.2"
},
"devDependencies": {
"eslint": "^5.5.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0"
"eslint": "5.5.0",
"eslint-config-standard": "12.0.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-node": "7.0.1",
"eslint-plugin-promise": "4.0.0",
"eslint-plugin-standard": "4.0.0"
},
"scripts": {
"lint": "eslint . --ext .js",
Expand Down

0 comments on commit 41c6171

Please sign in to comment.