Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save CyprienLecallier/10e75328071f401421445544deabb313 to your computer and use it in GitHub Desktop.
Save CyprienLecallier/10e75328071f401421445544deabb313 to your computer and use it in GitHub Desktop.
steps:
- task: NodeTool@0
inputs:
versionSpec: 12.x
displayName: Cache Yarn packages
- script: yarn install --prefer-offline --pure-lockfile --no-progress
displayName: Yarn Install
- script: yarn test:ci -w 2
displayName: 'Run tests'
- script: yarn security:check
displayName: 'Do security audit'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment