diff --git a/ci/steps/fmt.sh b/ci/steps/fmt.sh index 5e323596..7d6717f5 100755 --- a/ci/steps/fmt.sh +++ b/ci/steps/fmt.sh @@ -7,7 +7,7 @@ main() { yarn --frozen-lockfile git submodule update --init - # We do not `yarn vscode` to make test.sh faster. + # We do not `yarn vscode` to make fmt.sh faster. # If the patch fails to apply, then it's likely already applied yarn vscode:patch &> /dev/null || true diff --git a/ci/steps/lint.sh b/ci/steps/lint.sh index b493e160..671229f8 100755 --- a/ci/steps/lint.sh +++ b/ci/steps/lint.sh @@ -7,9 +7,8 @@ main() { yarn --frozen-lockfile git submodule update --init - # We do not `yarn vscode` to make test.sh faster. - # If the patch fails to apply, then it's likely already applied - yarn vscode:patch &> /dev/null || true + # We need to fetch VS Code's deps for lint dependencies. + yarn vscode yarn lint }