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
- language: node_js
node_js: 8.11.4
install: yarn
before_script:
before_install:
- cd frontend/
install: yarn
script:
- yarn run lint
- yarn run tsc
# Backend
- language: python
python: 3.6
install: pip install -r requirements/dev.txt
before_script:
before_install:
- cd backend/
install: pip install -r requirements/dev.txt
script:
- flask test
# Contracts
- language: node_js
node_js: 8.11.4
install: yarn
before_script:
before_install:
- cd contract/
install: yarn
script:
- yarn run test