1
0
Fork 0
docsearch/scripts/test-ci
Pixelastic bfa06b26c3 docs(readme): Add badges
This adds badges to the readme, including the coverage one (through
coveralls).
2015-12-23 10:47:17 +01:00

14 lines
322 B
Bash
Executable file

#!/usr/bin/env bash
set -ev # exit when error
./scripts/validate-pr-done-on-develop
npm run test:coverage
npm prune
npm run shrinkwrap --dev
NODE_ENV=production npm run build
./scripts/validate-commit-msgs
if [ "$TRAVIS_PULL_REQUEST" == 'false' ] && [ "$TRAVIS_BRANCH" == 'master' ]; then
./scripts/finish-release
fi