Skip to content

Instantly share code, notes, and snippets.

@corradin
Created August 23, 2019 13:36
Show Gist options
  • Save corradin/1b3f00a32461ae7b187688573255d5d6 to your computer and use it in GitHub Desktop.
Save corradin/1b3f00a32461ae7b187688573255d5d6 to your computer and use it in GitHub Desktop.
trigger:
- master
jobs:
- job: Linting
pool:
name: Hosted Ubuntu 1604
steps:
- bash: npm install
displayName: NPM Install Dependencies
- bash: npm run lint
displayName: Run Angular linting
- job: Unit_tests
pool:
name: Hosted Ubuntu 1604
steps:
- bash: npm install
displayName: NPM Install Dependencies
- bash: npm run test
displayName: Run unit tests
- job: Build
pool:
name: Hosted Ubuntu 1604
steps:
- bash: npm install
displayName: NPM Install Dependencies
- bash: npm run build
displayName: Build Angular application
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment