mirror of
https://github.com/status-im/safe-react.git
synced 2025-01-10 01:55:37 +00:00
88bfca0a0d
* WA-280 Added redux logic for safe route * WA-280 Added tests including builders for safe's redux store classes * WA-280 Improving Flow coverage in actions and reducers * WA- 280 Mocking LocalStorage and Web3 in JEST * WA-280 Generating view of Safe route and its logic to store and retrieve info from localstorage * WA-280 Added run-with-testrpc for simulating a testnet in memory while executing tests
24 lines
568 B
YAML
24 lines
568 B
YAML
language: node_js
|
|
node_js:
|
|
- "8"
|
|
os:
|
|
- linux
|
|
before_script:
|
|
- yarn global add truffle@4.1.3
|
|
- yarn global add surge
|
|
- git clone https://github.com/gnosis/gnosis-safe-contracts.git
|
|
- cd gnosis-safe-contracts
|
|
- truffle compile && cd ..
|
|
after_success:
|
|
- yarn build-storybook
|
|
- yarn build
|
|
- |
|
|
if [ ${TRAVIS_BRANCH} = "master" ]; then
|
|
export NODE_ENV=production;
|
|
else
|
|
export NODE_ENV=development;
|
|
fi
|
|
- cd build_webpack/ && cp index.html 200.html && cd ..
|
|
- chmod ugo+x ./config/deploy/deploy.sh
|
|
- ./config/deploy/deploy.sh
|