code-server/ci/dev/ci.sh

14 lines
145 B
Bash
Raw Normal View History

2020-02-19 00:06:35 +00:00
#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
2020-02-19 00:06:35 +00:00
yarn fmt
yarn lint
2021-04-05 23:32:01 +00:00
yarn _audit
yarn test:unit
2020-02-19 00:06:35 +00:00
}
main "$@"