Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 324d49b

Browse files
committedNov 30, 2020
ci: Fetch vscode node_modules in lint.sh for eslint
1 parent 210af27 commit 324d49b

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 lint dependencies.
11+
yarn vscode
1312

1413
yarn lint
1514
}

0 commit comments

Comments
 (0)
Please sign in to comment.