File size: 236 Bytes
e98c0d7 | 1 2 3 4 5 6 7 8 9 10 11 12 | #!/usr/bin/env bash
set -e
bundle install
bundle exec turbo_tests --verbose
# TODO: If you have native helpers or additional tests, add them here
# Example:
# cd /opt/bazel && npm run lint && cd -
# cd /opt/bazel && npm test && cd -
|