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'