mirror of
https://github.com/Growstuff/growstuff.git
synced 2026-01-04 07:27:50 -05:00
18 lines
323 B
Bash
Executable File
18 lines
323 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "${STATIC_CHECKS}" = "true" ]; then
|
|
set -euv
|
|
yarn install;
|
|
|
|
gem install --update overcommit haml-lint bundler-audit --no-document;
|
|
|
|
# pip install --upgrade pip;
|
|
pip install yamllint --user;
|
|
|
|
overcommit --install;
|
|
overcommit --sign;
|
|
overcommit --sign pre-commit;
|
|
|
|
bundle-audit update;
|
|
fi
|