52 lines
1.2 KiB
YAML
52 lines
1.2 KiB
YAML
parameters:
|
|
name: ''
|
|
jobs:
|
|
- job: ${{ parameters.name }}
|
|
pool:
|
|
vmImage: 'ubuntu-latest'
|
|
demands:
|
|
- npm
|
|
- node.js
|
|
- java
|
|
variables:
|
|
npm_config_cache: $(Pipeline.Workspace)/.npm
|
|
|
|
steps:
|
|
- checkout: self
|
|
|
|
- task: NodeTool@0
|
|
displayName: 'Use Node 10.x'
|
|
inputs:
|
|
versionSpec: 10.x
|
|
checkLatest: true
|
|
|
|
- task: CacheBeta@1
|
|
inputs:
|
|
key: npm | $(Agent.OS) | package-lock.json
|
|
path: $(npm_config_cache)
|
|
cacheHitVar: CACHE_RESTORED
|
|
- script: npm ci
|
|
displayName: 'npm ci'
|
|
|
|
- task: Gulp@0
|
|
displayName: 'Bundle project'
|
|
inputs:
|
|
targets: bundle
|
|
arguments: '--ship'
|
|
|
|
- task: Gulp@0
|
|
displayName: 'Package Solution'
|
|
inputs:
|
|
targets: 'package-solution'
|
|
arguments: '--ship'
|
|
|
|
- task: CopyFiles@2
|
|
displayName: 'Copy Files to: $(Build.ArtifactStagingDirectory)'
|
|
inputs:
|
|
Contents: |
|
|
sharepoint/**/*.sppkg
|
|
TargetFolder: '$(Build.ArtifactStagingDirectory)'
|
|
|
|
- task: PublishBuildArtifacts@1
|
|
displayName: 'Publish Artifact: drop'
|