mirror of
https://github.com/Instadapp/Swap-Aggregator-Subgraph.git
synced 2024-07-29 21:57:12 +00:00
28 lines
480 B
YAML
28 lines
480 B
YAML
pool:
|
|
vmImage: 'windows-latest'
|
|
|
|
steps:
|
|
- task: NodeTool@0
|
|
inputs:
|
|
versionSpec: '10.x'
|
|
displayName: 'Install Node.js'
|
|
|
|
- script: |
|
|
choco install yarn -y
|
|
displayName: 'install yarn'
|
|
|
|
- script: |
|
|
yarn install
|
|
displayName: 'yarn install'
|
|
|
|
- script: |
|
|
yarn ci:test
|
|
displayName: 'yarn ci:test'
|
|
|
|
- task: ArchiveFiles@2
|
|
inputs:
|
|
rootFolderOrFile: '$(System.DefaultWorkingDirectory)/build/'
|
|
includeRootFolder: false
|
|
|
|
- task: PublishBuildArtifacts@1
|