Skip to content

Commit 0151b14

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

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
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

+4-1
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,12 @@ 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 lint.sh faster.
1111
# If the patch fails to apply, then it's likely already applied
1212
yarn vscode:patch &> /dev/null || true
13+
cd lib/vscode
14+
yarn --ignore-scripts
15+
cd "$OLDPWD"
1316

1417
yarn lint
1518
}

0 commit comments

Comments
 (0)