mirror of
https://github.com/status-im/safe-react.git
synced 2025-01-12 19:14:08 +00:00
14 lines
243 B
Bash
Executable File
14 lines
243 B
Bash
Executable File
#!/bin/bash
|
|
|
|
export NODE_ENV=production;
|
|
|
|
if [[ -n "$TRAVIS_TAG" ]]; then
|
|
export REACT_APP_ENV='production';
|
|
elif [[ "$TRAVIS_BRANCH" == "development" ]];
|
|
export NODE_ENV=development;
|
|
fi
|
|
|
|
|
|
yarn lint:check
|
|
yarn prettier:check
|
|
yarn build |