Last active
December 17, 2019 02:13
-
-
Save vsavkin/6ee2ba5284392961aeac38c49f792f31 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- job: lint1 | |
dependsOn: initial_setup | |
condition: | | |
and( | |
succeeded(), | |
not(contains( | |
dependencies.initial_setup.outputs['setCommands.COMMANDS'], | |
'"lint1":[]' | |
)) | |
) | |
pool: | |
vmImage: 'ubuntu-latest' | |
variables: | |
COMMANDS: $[ dependencies.initial_setup.outputs['setCommands.COMMANDS'] ] | |
steps: | |
- template: .azure-pipelines/steps/install-node-modules.yml | |
- script: node ./tools/scripts/run-many.js '$(COMMANDS)' lint1 lint |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment