cd before install instead of before script.

This commit is contained in:
Will O'Beirne 2018-09-11 15:40:32 -04:00
parent e562843146
commit 08e8360393
No known key found for this signature in database
GPG Key ID: 44C190DB5DEAF9F6
1 changed files with 6 additions and 6 deletions

View File

@ -3,25 +3,25 @@ matrix:
# Frontend # Frontend
- language: node_js - language: node_js
node_js: 8.11.4 node_js: 8.11.4
install: yarn before_install:
before_script:
- cd frontend/ - cd frontend/
install: yarn
script: script:
- yarn run lint - yarn run lint
- yarn run tsc - yarn run tsc
# Backend # Backend
- language: python - language: python
python: 3.6 python: 3.6
install: pip install -r requirements/dev.txt before_install:
before_script:
- cd backend/ - cd backend/
install: pip install -r requirements/dev.txt
script: script:
- flask test - flask test
# Contracts # Contracts
- language: node_js - language: node_js
node_js: 8.11.4 node_js: 8.11.4
install: yarn before_install:
before_script:
- cd contract/ - cd contract/
install: yarn
script: script:
- yarn run test - yarn run test