File tree 2 files changed +7
-3
lines changed
2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -289,7 +289,7 @@ jobs:
289
289
run : source scl_source enable devtoolset-9 && yarn release:standalone
290
290
291
291
- name : Install test dependencies
292
- run : yarn install --ignore-scripts && cd test && yarn install
292
+ run : yarn install
293
293
294
294
- name : Run integration tests on standalone release
295
295
run : yarn test:integration
@@ -425,7 +425,7 @@ jobs:
425
425
run : yarn release:standalone
426
426
427
427
- name : Install test dependencies
428
- run : yarn install --ignore-scripts && cd test && yarn install
428
+ run : yarn install
429
429
430
430
- name : Run integration tests on standalone release
431
431
run : yarn test:integration
Original file line number Diff line number Diff line change @@ -29,7 +29,11 @@ main() {
29
29
30
30
install-deps test
31
31
install-deps test/e2e/extensions/test-extension
32
- install-deps lib/vscode
32
+ # We don't need these when running the integration tests
33
+ # so you can pass SKIP_SUBMODULE_DEPS
34
+ if [[ ! ${SKIP_SUBMODULE_DEPS-} ]]; then
35
+ install-deps lib/vscode
36
+ fi
33
37
}
34
38
35
39
main " $@ "
You can’t perform that action at this time.
0 commit comments