Skip to content

Instantly share code, notes, and snippets.

@vsavkin
Last active December 17, 2019 02:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vsavkin/6ee2ba5284392961aeac38c49f792f31 to your computer and use it in GitHub Desktop.
Save vsavkin/6ee2ba5284392961aeac38c49f792f31 to your computer and use it in GitHub Desktop.
- 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