mirror of
https://github.com/status-im/safe-react.git
synced 2025-01-11 10:34:06 +00:00
2c019d1931
* Repare new dev and staging enviroments to deploy - Add to `deploy_pull_requests.sh` to the new path. - Replace upload-dir to deploy staging to the new path. * add /app/ public path for the webapp, remove duplicate yarn build from travis * add basename to app * deploy pr to /app * update travis * linter error fixes * fix travis build script Co-authored-by: David Albela Pérez <3659067+davidalbela@users.noreply.github.com>
9 lines
159 B
Bash
9 lines
159 B
Bash
#!/bin/bash
|
|
|
|
export NODE_ENV=production;
|
|
|
|
if [[ -n "$TRAVIS_TAG" ]]; then export REACT_APP_ENV='production'; fi
|
|
|
|
yarn lint:check
|
|
yarn prettier:check
|
|
yarn build |