Use yarn instead in md server build script (#178622)

Also removes unused API extractor script
This commit is contained in:
Matt Bierner
2023-03-29 14:46:38 -07:00
committed by GitHub
parent 2c68e07691
commit af5ef24b52
@@ -24,15 +24,12 @@ extends:
- name: vscode-markdown-languageserver
buildSteps:
- script: npm install
- script: yarn install
displayName: Install dependencies
- script: npm run compile
- script: yarn run compile
displayName: Compile
- script: npm run api-extractor
displayName: API Extractor
testPlatforms:
- name: Linux
nodeVersions:
@@ -45,13 +42,13 @@ extends:
- 16.x
testSteps:
- script: npm install
- script: yarn install
displayName: Install dependencies
- script: npm run compile
- script: yarn run compile
displayName: Compile
- script: npm test
- script: yarn test
displayName: Test npm package
publishPackage: ${{ parameters.publishPackage }}