zcash-grant-system/.travis.yml

29 lines
613 B
YAML
Raw Normal View History

matrix:
include:
2018-09-11 12:37:57 -07:00
# Frontend
- language: node_js
node_js: 8.11.4
before_install:
- cd frontend/
install: yarn
script:
2018-09-11 12:37:57 -07:00
- yarn run lint
- yarn run tsc
# Backend
- language: python
python: 3.6
before_install:
- cd backend/
- cp .envexample .env
install: pip install -r requirements/dev.txt
script:
2018-09-11 12:37:57 -07:00
- flask test
# Contracts
- language: node_js
node_js: 8.11.4
before_install:
2018-09-11 12:37:57 -07:00
- cd contract/
install: yarn && yarn add global truffle
2018-09-11 12:37:57 -07:00
script:
- yarn run test