Skip to content

Commit cad3a1c

Browse files
authored
Engineering - skip property mangling in PR builds (microsoft#184584)
1 parent 2798d7b commit cad3a1c

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

build/azure-pipelines/product-compile.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -93,10 +93,16 @@ steps:
9393

9494
- template: common/install-builtin-extensions.yml
9595

96-
- script: yarn npm-run-all -lp core-ci extensions-ci hygiene eslint valid-layers-check vscode-dts-compile-check tsec-compile-check
97-
env:
98-
GITHUB_TOKEN: "$(github-distro-mixin-password)"
99-
displayName: Compile & Hygiene
96+
- ${{ if eq(parameters.VSCODE_QUALITY, 'oss') }}:
97+
- script: yarn npm-run-all -lp core-ci-pr extensions-ci-pr hygiene eslint valid-layers-check vscode-dts-compile-check tsec-compile-check
98+
env:
99+
GITHUB_TOKEN: "$(github-distro-mixin-password)"
100+
displayName: Compile & Hygiene
101+
- ${{ else }}:
102+
- script: yarn npm-run-all -lp core-ci extensions-ci hygiene eslint valid-layers-check vscode-dts-compile-check tsec-compile-check
103+
env:
104+
GITHUB_TOKEN: "$(github-distro-mixin-password)"
105+
displayName: Compile & Hygiene
100106

101107
- ${{ if ne(parameters.VSCODE_QUALITY, 'oss') }}:
102108
- script: |

0 commit comments

Comments
 (0)