Skip to content

Instantly share code, notes, and snippets.

@Packet-Lost
Created January 31, 2021 19:51
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Packet-Lost/734207dc81652a9ad69a7cf52c2e2141 to your computer and use it in GitHub Desktop.
Save Packet-Lost/734207dc81652a9ad69a7cf52c2e2141 to your computer and use it in GitHub Desktop.
Speed up Azure Devops Pipelines with npm caching
variables:
npm_config_cache: $(Pipeline.Workspace)/.npm
steps:
#shallow depth git checkout for faster checkout and artifact download speeds
- checkout: self
fetchDepth: 10
- task: Cache@2
displayName: Cache npm
inputs:
key: 'npm | "$(Agent.OS)" | $(Build.SourcesDirectory)/webapp/package.json, $(Build.SourcesDirectory)/webapp/npm-shrinkwrap.json'
path: $(npm_config_cache)
restoreKeys: |
npm | "$(Agent.OS)"
cacheHitVar: NPM_CACHE_RESTORED
- task: Cache@2
displayName: Cache webapp node_modules
inputs:
key: 'node_modules | "$(Agent.OS)" | $(Build.SourcesDirectory)/webapp/package.json, $(Build.SourcesDirectory)/webapp/npm-shrinkwrap.json'
path: '$(Build.SourcesDirectory)/webapp/node_modules'
cacheHitVar: MODULES_CACHE_RESTORED
- task: Npm@1
displayName: Npm Install
inputs:
command: 'custom'
customCommand: 'ci'
workingDir: '$(Build.SourcesDirectory)/webapp'
condition: ne(variables.MODULES_CACHE_RESTORED, 'true')
- task: Npm@1
displayName: Npm Build
inputs:
command: custom
customCommand: run build --prod
workingDir: '$(Build.SourcesDirectory)/webapp'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment