mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-19 17:14:57 +00:00
17 lines
364 B
Bash
Executable File
17 lines
364 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
cd $DIR/../..
|
|
|
|
echo "====== Testing ======"
|
|
echo "====== Build ======"
|
|
|
|
if [ "$CI" = "true" ]; then
|
|
echo "Building testing for production"
|
|
npm run ng -- build testing --prod || exit 1
|
|
else
|
|
echo "Building testing for development"
|
|
npm run ng -- build testing || exit 1
|
|
fi
|