Hospital-Management-System/client/continuous_deployment/before_install.sh

12 lines
272 B
Bash
Raw Normal View History

2021-03-31 01:50:36 +00:00
#!/bin/bash
set -ev
#run only on master
if [[ $TRAVIS_PULL_REQUEST == "false" ]] && [[ $TRAVIS_BRANCH == "master" ]]; then
npm install -g firebase-tools
npm install -g selenium-webdriver
npm install codecov.io coveralls
cd functions
npm install
cd ..
fi