https://bugzilla.tianocore.org/show_bug.cgi?id=2315 Add YML configuration files used to run the EDK II Continuous Integration (CI) checks on Azure Pipelines agents. Cc: Sean Brogan <sean.brogan@microsoft.com> Cc: Bret Barkelew <Bret.Barkelew@microsoft.com> Cc: Liming Gao <liming.gao@intel.com> Signed-off-by: Michael D Kinney <michael.d.kinney@intel.com> Reviewed-by: Liming Gao <liming.gao@intel.com>
23 lines
535 B
YAML
23 lines
535 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: '10.x'
|
|
#checkLatest: false # Optional
|
|
condition: and(gt(variables.pkg_count, 0), succeeded())
|
|
|
|
- script: npm install -g cspell
|
|
displayName: 'Install cspell npm'
|
|
condition: and(gt(variables.pkg_count, 0), succeeded())
|