mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-24 09:35:37 -05:00
* more strict null checks in base browser code * revert changes to radiobutton * fix some more minor things, enable strict null check in pipelines * formatting * fix compile errors * make null undefined * more null to undefined
35 lines
623 B
YAML
35 lines
623 B
YAML
steps:
|
|
- task: NodeTool@0
|
|
inputs:
|
|
versionSpec: '10.15.1'
|
|
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 tslint
|
|
displayName: 'Run TSLint'
|
|
|
|
- script: |
|
|
yarn strict-null-check
|
|
displayName: 'Run Strict Null Check'
|