mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-26 23:00:29 -04:00
* removes more builder references * remove builder from profiler * formatting * fix profiler dailog * remove builder from oatuhdialog * remove the rest of builder references * formatting * add more strict null checks to base * enable strict tslint rules * fix formatting * fix compile error * fix the rest of the hygeny issues and add pipeline step * fix pipeline files
39 lines
678 B
YAML
39 lines
678 B
YAML
steps:
|
|
- task: NodeTool@0
|
|
inputs:
|
|
versionSpec: '10.15.1'
|
|
displayName: 'Install Node.js'
|
|
|
|
- script: |
|
|
yarn
|
|
displayName: 'Yarn Install'
|
|
|
|
- script: |
|
|
yarn gulp electron-x64
|
|
displayName: 'Electron'
|
|
|
|
- script: |
|
|
yarn gulp hygiene
|
|
displayName: Run Hygiene Checks
|
|
|
|
- script: |
|
|
yarn tslint
|
|
displayName: 'Run TSLint'
|
|
|
|
- script: |
|
|
yarn strict-null-check
|
|
displayName: 'Run Strict Null Check'
|
|
|
|
- script: |
|
|
yarn compile
|
|
displayName: 'Compile'
|
|
|
|
- script: |
|
|
.\scripts\test.bat --reporter mocha-junit-reporter
|
|
displayName: 'Test'
|
|
|
|
- task: PublishTestResults@2
|
|
inputs:
|
|
testResultsFiles: 'test-results.xml'
|
|
condition: succeededOrFailed()
|