code-server/ci/dev/ci.sh

12 lines
131 B
Bash
Executable file

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