File size: 432 Bytes
fc0f7bd | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | # template for building the widget/fairlearn dashboard
parameters:
name: 'BuildWidget'
vmImage: 'ubuntu-latest'
pyVersion: 3.6
jobs:
- job: ${{ parameters.name }}
pool:
vmImage: ${{ parameters.vmImage }}
steps:
# TODO: add --assert-no-changes to validate that no changes happened to widget files (Issue #270)
- script: python ./scripts/build_widget.py --yarn-path /usr/bin/yarn
displayName: 'Build widget'
|