2014-04-19 06:05:47 +04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2016-07-07 04:38:07 +03:00
|
|
|
set -euo pipefail
|
|
|
|
|
2016-06-27 22:24:10 +03:00
|
|
|
glob=$*
|
|
|
|
if [ "$glob" == "" ]; then
|
|
|
|
glob="test/local test/remote"
|
|
|
|
fi
|
|
|
|
|
2014-04-19 06:05:47 +04:00
|
|
|
./scripts/gen_keys.js
|
2015-04-22 03:40:12 +03:00
|
|
|
./scripts/check-i18n.js
|
2016-06-27 22:24:10 +03:00
|
|
|
./scripts/tap-coverage.js $glob 2>/dev/null
|
|
|
|
grunt eslint copyright
|