Created
January 30, 2019 16:14
-
-
Save pvhee/dd0d69a3b996e6cbb8123e56cd8ca93e to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| [ -f ~/.bashrc ] && . ~/.bashrc | |
| # Changing path to project master | |
| cd ../repository | |
| # Install NPM packages | |
| echo -e "\e[33m1. Running YARN install" | |
| yarn install --no-progress | |
| # Run the test | |
| echo -e "\e[33m2. Running NPM build command" | |
| yarn test |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment