Skip to content

Commit 7b5ce50

Browse files
committed
ci: Fetch vscode node_modules in lint.sh for eslint
1 parent 833314a commit 7b5ce50

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

ci/steps/fmt.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ main() {
77
yarn --frozen-lockfile
88

99
git submodule update --init
10-
# We do not `yarn vscode` to make test.sh faster.
10+
# We do not `yarn vscode` to make fmt.sh faster.
1111
# If the patch fails to apply, then it's likely already applied
1212
yarn vscode:patch &> /dev/null || true
1313

ci/steps/lint.sh

+2-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,8 @@ main() {
77
yarn --frozen-lockfile
88

99
git submodule update --init
10-
# We do not `yarn vscode` to make test.sh faster.
11-
# If the patch fails to apply, then it's likely already applied
12-
yarn vscode:patch &> /dev/null || true
10+
# We need to fetch VS Code's deps for proper linting.
11+
yarn vscode
1312

1413
yarn lint
1514
}

0 commit comments

Comments
 (0)