woocommerce/plugins/woocommerce-admin/bin/travis.sh

14 lines
264 B
Bash
Executable File

#!/usr/bin/env bash
# usage: travis.sh before|after
if [ $1 == 'before' ]; then
cd "$WP_CORE_DIR/wp-content/plugins/woocommerce-admin/"
if [[ ${RUN_PHPCS} == 1 ]]; then
composer install
else
npm run build:feature-config
composer install --no-dev
fi
fi