Grunt@0 - Grunt v0 工作
使用此工作來執行 Grunt JavaScript 工作執行器。
Syntax
# Grunt v0
# Run the Grunt JavaScript task runner.
- task: Grunt@0
inputs:
gruntFile: 'gruntfile.js' # string. Required. Grunt File Path. Default: gruntfile.js.
#targets: # string. Grunt Task(s).
#arguments: # string. Arguments.
# Advanced
#workingDirectory: # string. Alias: cwd. Working Directory.
gruntCli: 'node_modules/grunt-cli/bin/grunt' # string. Required. grunt-cli location. Default: node_modules/grunt-cli/bin/grunt.
# JUnit Test Results
#publishJUnitResults: false # boolean. Publish to Azure Pipelines. Default: false.
#testResultsFiles: '**/TEST-*.xml' # string. Required when publishJUnitResults = true. Test Results Files. Default: **/TEST-*.xml.
#testRunTitle: # string. Optional. Use when publishJUnitResults = true. Test Run Title.
# Code Coverage
#enableCodeCoverage: false # boolean. Enable Code Coverage. Default: false.
#testFramework: 'Mocha' # 'Mocha' | 'Jasmine'. Optional. Use when enableCodeCoverage = true. Test Framework. Default: Mocha.
#srcFiles: # string. Optional. Use when enableCodeCoverage = true. Source Files.
#testFiles: 'test/*.js' # string. Required when enableCodeCoverage = true. Test Script Files. Default: test/*.js.
# Grunt v0
# The JavaScript Task Runner.
- task: Grunt@0
inputs:
gruntFile: 'gruntfile.js' # string. Required. Grunt File Path. Default: gruntfile.js.
#targets: # string. Grunt Task(s).
#arguments: # string. Arguments.
# Advanced
#workingDirectory: # string. Alias: cwd. Working Directory.
gruntCli: 'node_modules/grunt-cli/bin/grunt' # string. Required. grunt-cli location. Default: node_modules/grunt-cli/bin/grunt.
# JUnit Test Results
#publishJUnitResults: false # boolean. Publish to Azure Pipelines/TFS. Default: false.
#testResultsFiles: '**/TEST-*.xml' # string. Required when publishJUnitResults = true. Test Results Files. Default: **/TEST-*.xml.
#testRunTitle: # string. Optional. Use when publishJUnitResults = true. Test Run Title.
# Code Coverage
#enableCodeCoverage: false # boolean. Enable Code Coverage. Default: false.
#testFramework: 'Mocha' # 'Mocha' | 'Jasmine'. Optional. Use when enableCodeCoverage = true. Test Framework. Default: Mocha.
#srcFiles: # string. Optional. Use when enableCodeCoverage = true. Source Files.
#testFiles: 'test/*.js' # string. Required when enableCodeCoverage = true. Test Script Files. Default: test/*.js.
輸入
gruntFile
- Grunt 檔案路徑
string
. 必要。 預設值:gruntfile.js
。
指定從存放庫根目錄到 Grunt 文稿的相對路徑。
targets
- Grunt Task (s)
string
.
選擇性。 指定要執行之工作的空間分隔清單。 如果未指定,預設工作將會執行。
arguments
- 參數
string
.
指定傳遞至 Grunt 的其他自變數。 如需詳細資訊 ,請參閱使用 CLI 。
注意:--gruntfile
不需要 ,因為它已經透過上述的 gruntFile 輸入新增。
workingDirectory
- 工作目錄
輸入別名: cwd
。 string
.
選擇性。 指定執行文稿時的目前工作目錄。 如果未指定,工作目錄預設為腳本所在的資料夾。
gruntCli
- grunt-cli 位置
string
. 必要。 預設值:node_modules/grunt-cli/bin/grunt
。
指定要在代理程式找不到全域安裝的 grunt-cli 時執行的 grunt-cli。 默認為工作目錄資料夾下的 node_modules
grunt-cli。
publishJUnitResults
- 發佈至 Azure Pipelines
boolean
. 預設值:false
。
選取此選項可將 Grunt 組建所產生的 JUnit 測試結果發佈至 Azure Pipelines/TFS。
publishJUnitResults
- 發佈至 Azure Pipelines/TFS
boolean
. 預設值:false
。
選取此選項可將 Grunt 組建所產生的 JUnit 測試結果發佈至 Azure Pipelines/TFS。
testResultsFiles
- 測試結果檔案
string
. 當 publishJUnitResults = true
時為必要。 預設值:**/TEST-*.xml
。
指定測試結果檔案路徑。 可以使用萬用字元。
例如, **/TEST-*.xml
針對開頭 TEST-
為 的所有 XML 檔名。
testRunTitle
- 測試回合標題
string
. 選擇性。 使用 時 publishJUnitResults = true
。
指定測試回合的名稱。
enableCodeCoverage
- 啟用程式代碼涵蓋範圍
boolean
. 預設值:false
。
選取此選項可啟用使用布建的程式代碼涵蓋範圍。
testFramework
- 測試架構
string
. 選擇性。 使用 時 enableCodeCoverage = true
。 允許值:Mocha
和 Jasmine
。 預設值:Mocha
。
指定測試架構。
srcFiles
- 原始程序檔
string
. 選擇性。 使用 時 enableCodeCoverage = true
。
指定您想要 hookRequire()
的來源檔案路徑。
testFiles
- 測試腳本檔案
string
. 當 enableCodeCoverage = true
時為必要。 預設值:test/*.js
。
指定測試文稿檔案的路徑。
工作控制選項
除了工作輸入之外,所有工作都有控制選項。 如需詳細資訊,請參閱 控制選項和一般工作屬性。
輸出變數
無。
備註
使用此工作,使用 JavaScript 工作執行器來執行 Grunt 工作。
範例
請參閱 範例 Gruntfile。