-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add extra_npm_args for InstallMarkdownLink.yml and InstallSpellCheck (#…
…361)
- Loading branch information
1 parent
5fcc7d4
commit 9517bb6
Showing
3 changed files
with
20 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,14 @@ | |
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# SPDX-License-Identifier: BSD-2-Clause-Patent | ||
## | ||
parameters: | ||
- name: extra_npm_args | ||
displayName: Extra npm arguments | ||
type: string | ||
default: '' | ||
|
||
steps: | ||
|
||
- script: npm install -g [email protected] | ||
- script: npm install -g [email protected] ${{ parameters.extra_npm_args }} | ||
displayName: Install Markdown Linter | ||
condition: succeeded() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,14 @@ | |
# Copyright (c) Microsoft Corporation. All rights reserved. | ||
# SPDX-License-Identifier: BSD-2-Clause-Patent | ||
## | ||
parameters: | ||
- name: extra_npm_args | ||
displayName: Extra npm arguments | ||
type: string | ||
default: '' | ||
|
||
steps: | ||
|
||
- script: npm install -g [email protected] | ||
- script: npm install -g [email protected] ${{ parameters.extra_npm_args }} | ||
displayName: Install cspell npm | ||
condition: succeeded() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters