have travis check for uncommited yarn.lock changes

This commit is contained in:
Brian Peiris 2018-04-12 13:00:52 -07:00
Родитель f104fc6ad8
Коммит 40dc503aeb
2 изменённых файлов: 13 добавлений и 1 удалений

Просмотреть файл

@ -5,4 +5,6 @@ before_install:
- curl -o- -L https://yarnpkg.com/install.sh | bash -s -- --version 1.5.1
- export PATH="$HOME/.yarn/bin:$PATH"
install: yarn
script: yarn lint
script:
- yarn lint
- ./scripts/check-yarn-lock.sh

10
scripts/check-yarn-lock.sh Executable file
Просмотреть файл

@ -0,0 +1,10 @@
#!/usr/bin/env bash
if [ `git diff yarn.lock | wc -l` -ne 0 ]; then
echo ""
tput setaf 1
echo "!! UNCOMMITED YARN.LOCK CHANGES !!"
tput sgr0
echo ""
exit 1
fi