Files
code-server/ci/steps/lint.sh
2020-11-29 21:05:11 -05:00

17 lines
233 B
Bash
Executable File

#!/usr/bin/env bash
set -euo pipefail
main() {
cd "$(dirname "$0")/../.."
yarn --frozen-lockfile
git submodule update --init
# We need to fetch VS Code's deps for lint dependencies.
yarn vscode
yarn lint
}
main "$@"