mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-13 17:22:15 -05:00
30 lines
543 B
YAML
30 lines
543 B
YAML
steps:
|
|
- task: NodeTool@0
|
|
inputs:
|
|
versionSpec: '8.9'
|
|
displayName: 'Install Node.js'
|
|
|
|
- script: |
|
|
yarn
|
|
displayName: 'Yarn Install'
|
|
|
|
- script: |
|
|
.\node_modules\.bin\gulp electron
|
|
displayName: 'Electron'
|
|
|
|
- script: |
|
|
npm run compile
|
|
displayName: 'Compile'
|
|
|
|
- script: |
|
|
.\scripts\test.bat --reporter mocha-junit-reporter
|
|
displayName: 'Test'
|
|
|
|
- task: PublishTestResults@2
|
|
inputs:
|
|
testResultsFiles: 'test-results.xml'
|
|
condition: succeededOrFailed()
|
|
|
|
- script: |
|
|
yarn run tslint
|
|
displayName: 'Run TSLint' |