Fix bugs in CI

This commit is contained in:
Anmol Sethi
2020-02-18 19:06:35 -05:00
parent 1aaa53622d
commit 5681c87e33
12 changed files with 40 additions and 51 deletions

12
ci/ci.sh Executable file
View File

@@ -0,0 +1,12 @@
#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/.."
yarn fmt
yarn lint
yarn test
}
main "$@"