mirror of
https://github.com/Instadapp/trustwallet-assets.git
synced 2024-07-29 22:37:31 +00:00
47 lines
1.0 KiB
YAML
47 lines
1.0 KiB
YAML
trigger:
|
|
- master
|
|
|
|
pool:
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
variables:
|
|
npm_config_cache: '$(Pipeline.Workspace)/.npm'
|
|
|
|
steps:
|
|
- task: NodeTool@0
|
|
inputs:
|
|
versionSpec: '12.x'
|
|
displayName: Install Node.js
|
|
|
|
- task: Cache@2
|
|
inputs:
|
|
key: 'npm | "$(Agent.OS)" | package-lock.json'
|
|
restoreKeys: |
|
|
npm | "$(Agent.OS)"
|
|
npm
|
|
path: $(npm_config_cache)
|
|
cacheHitVar: NPM_CACHE_RESTORED
|
|
continueOnError: true
|
|
enabled: false
|
|
displayName: Cache npm
|
|
|
|
- task: Npm@1
|
|
inputs:
|
|
command: 'install'
|
|
condition: ne(variables.NPM_CACHE_RESTORED, 'true')
|
|
displayName: Install npm dependencies
|
|
|
|
- script: |
|
|
git config --global user.email "bot@trustwallet.com"
|
|
git config --global user.name "TrustWalletBot"
|
|
- checkout: self
|
|
persistCredentials: true
|
|
|
|
- script: npm run checksum-erc20
|
|
|
|
- task: ShellScript@2
|
|
inputs:
|
|
scriptPath: './script/commit.sh'
|
|
failOnStandardError: true
|
|
|
|
- script: npm t |