Advertisement
Guest User

Untitled

a guest
Feb 23rd, 2019
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. ```yaml
  2. - task: 1ESLighthouseEng.PipelineArtifactCaching.RestoreAndSaveCacheV1.RestoreAndSaveCache@1
  3. inputs:
  4. keyfile: '**/yarn.lock, !**/node_modules/**/yarn.lock, !**/.*/**/yarn.lock'
  5. targetfolder: '**/node_modules, !**/node_modules/**/node_modules'
  6. vstsFeed: '$(ArtifactFeed)'
  7. - script: |
  8. yarn install
  9. displayName: Install Dependencies
  10. condition: ne(variables['CacheRestored'], 'true'
  11. ```
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement