Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix md server build script compile and remove unused test part #178635

Merged
merged 2 commits into from Mar 29, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
25 changes: 2 additions & 23 deletions extensions/markdown-language-features/server/build/pipeline.yml
Expand Up @@ -24,31 +24,10 @@ extends:
- name: vscode-markdown-languageserver

buildSteps:
- script: yarn --cwd extensions/markdown-language-features/server install
- script: yarn install
displayName: Install dependencies

- script: yarn --cwd extensions/markdown-language-features/server run compile
- script: gulp compile-extension:markdown-language-features-server
displayName: Compile

testPlatforms:
- name: Linux
nodeVersions:
- 16.x
- name: MacOS
nodeVersions:
- 16.x
- name: Windows
nodeVersions:
- 16.x

testSteps:
- script: yarn --cwd extensions/markdown-language-features/server install
displayName: Install dependencies

- script: yarn --cwd extensions/markdown-language-features/server run compile
displayName: Compile

- script: yarn --cwd extensions/markdown-language-features/server test
displayName: Test npm package

publishPackage: ${{ parameters.publishPackage }}