Skip to content

Commit

Permalink
Use Azure to update CODEOWNERS (DefinitelyTyped#34556)
Browse files Browse the repository at this point in the history
* Use Azure to update CODEOWNERS

That way Travis can be removed altogether.

* Remove debugging output
  • Loading branch information
sandersn authored Apr 8, 2019
1 parent 6b1bda6 commit 6ce8fc0
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
# Starter pipeline
# Start with a minimal pipeline that you can customize to build and deploy your code.
# Add steps that build, run tests, deploy, and more:
# https://aka.ms/yaml
# Learn more at: https://aka.ms/yaml
jobs:
- job: npmRunTest
pool:
Expand All @@ -16,7 +13,10 @@ jobs:
inputs:
verbose: false

- script: 'git checkout -- . && npm run test'
- script: |
git checkout -- . && npm run test
if [[ $BUILD_REASON == "Schedule" ]]; then npm run update-codeowners; fi
displayName: 'npm run test'
trigger:
Expand Down

0 comments on commit 6ce8fc0

Please sign in to comment.