The v5.21.0 update introduced a number of new issues that might impact stable tag integration so this fixes the version to the previous release. Cc: Sean Brogan <sean.brogan@microsoft.com> Cc: Bret Barkelew <Bret.Barkelew@microsoft.com> Cc: Michael D Kinney <michael.d.kinney@intel.com> Cc: Liming Gao <gaoliming@byosoft.com.cn> Signed-off-by: Michael Kubacki <michael.kubacki@microsoft.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn> This value can be revisited in the future to update the
23 lines
542 B
YAML
23 lines
542 B
YAML
## @file
|
|
# File templates/spell-check-prereq-steps.yml
|
|
#
|
|
# template file used to install spell checking prerequisits
|
|
#
|
|
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
|
##
|
|
|
|
parameters:
|
|
none: ''
|
|
|
|
steps:
|
|
- task: NodeTool@0
|
|
inputs:
|
|
versionSpec: '14.x'
|
|
#checkLatest: false # Optional
|
|
condition: and(gt(variables.pkg_count, 0), succeeded())
|
|
|
|
- script: npm install -g cspell@5.20.0
|
|
displayName: 'Install cspell npm'
|
|
condition: and(gt(variables.pkg_count, 0), succeeded())
|