Update charts v9 readme (#33295) #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: VRT CI | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
concurrency: | |
# see https://docs.github.com/en/actions/writing-workflows/workflow-syntax-for-github-actions#example-only-cancel-in-progress-jobs-or-runs-for-the-current-workflow | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
NX_PARALLEL: 4 # ubuntu-latest = 4-core CPU / 16 GB of RAM | macos-14-xlarge (arm) = 6-core CPU / 14 GB of RAM | |
NX_PREFER_TS_NODE: true | |
NX_VERBOSE_LOGGING: true | |
permissions: | |
contents: 'read' | |
actions: 'read' | |
jobs: | |
web_components: | |
runs-on: ubuntu-latest | |
env: | |
pipelineId: '315' | |
pipelineName: 'fluent-ui_VRT_Pipeline_web-components' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run and publish VR screenshot | |
uses: ./.github/actions/run-publish-vr-screenshot | |
with: | |
fluentVersion: webcomponents | |
vrTestPackageName: 'vr-tests-web-components' | |
vrTestPackagePath: 'apps/vr-tests-web-components' | |
locationPrefix: 'FluentUI-web-components' | |
locationPostfix: 'vrscreenshotwebcomponents' | |
clientName: 'fluentui-web-components-v3' | |
react_components: | |
runs-on: ubuntu-latest | |
env: | |
pipelineId: '311' | |
pipelineName: 'fluent-ui_VRT_Pipeline_v9' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run and publish VR screenshot | |
uses: ./.github/actions/run-publish-vr-screenshot | |
with: | |
fluentVersion: v9 | |
vrTestPackageName: 'vr-tests-react-components' | |
vrTestPackagePath: 'apps/vr-tests-react-components' | |
locationPrefix: 'fluentuiv9' | |
locationPostfix: 'vrscreenshotv9' | |
clientName: 'fluentuiv9' | |
react: | |
runs-on: ubuntu-latest | |
env: | |
pipelineId: '312' | |
pipelineName: 'fluent-ui_VRT_Pipeline_v8' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run and publish VR screenshot | |
uses: ./.github/actions/run-publish-vr-screenshot | |
with: | |
fluentVersion: v8 | |
vrTestPackageName: 'vr-tests' | |
vrTestPackagePath: 'apps/vr-tests' | |
locationPrefix: 'fluentuiv8' | |
locationPostfix: 'vrscreenshotv8' | |
clientName: 'fluentuiv8' | |
react_northstar: | |
runs-on: ubuntu-latest | |
env: | |
pipelineId: '313' | |
pipelineName: 'fluent-ui_VRT_Pipeline_v0' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Run and publish VR screenshot | |
uses: ./.github/actions/run-publish-vr-screenshot | |
with: | |
fluentVersion: v0 | |
vrTestPackageName: 'docs' | |
vrTestPackagePath: 'packages/fluentui/docs' | |
locationPrefix: 'FluentUI-v0' | |
locationPostfix: 'vrscreenshotv0' | |
clientName: 'FluentUIV0' |