[ui] Show "Scaled Down" as a valid job status when task groups' counts are set to zero #3807
Workflow file for this run
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: Ember test audit comparison | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/ember*' | |
- 'ui/**' | |
defaults: | |
run: | |
working-directory: ui | |
# There’s currently no way to share steps between jobs so there’s a lot of duplication | |
# for running the audit for the base and PR. | |
jobs: | |
time-base: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
with: | |
ref: ${{ github.event.pull_request.base.sha }} | |
- uses: nanasess/setup-chromedriver@42cc2998329f041de87dc3cfa33a930eacd57eaa # v2.2.2 | |
- name: Use Node.js | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version: '18' | |
- run: yarn --frozen-lockfile | |
- run: mkdir -p /tmp/test-reports | |
- run: npx ember-test-audit 1 --json --output ../base-audit.json | |
- name: Upload result | |
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 | |
with: | |
name: base-audit | |
path: base-audit.json | |
time-pr: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- uses: nanasess/setup-chromedriver@42cc2998329f041de87dc3cfa33a930eacd57eaa # v2.2.2 | |
- name: Use Node.js | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version: '18' | |
- run: yarn --frozen-lockfile | |
- run: mkdir -p /tmp/test-reports | |
- run: npx ember-test-audit 1 --json --output ../pr-audit.json | |
- name: Upload result | |
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3 | |
with: | |
name: pr-audit | |
path: pr-audit.json | |
compare: | |
needs: [time-base, time-pr] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7 | |
with: | |
name: base-audit | |
- uses: actions/download-artifact@65a9edc5881444af0b9093a5e628f2fe47ea3b2e # v4.1.7 | |
with: | |
name: pr-audit | |
- uses: backspace/ember-test-audit-comparison-action@21e9492d0033bc7e84b6189ae94537a6ed045cfa # v2 | |
with: | |
base-report-path: base-audit.json | |
comparison-report-path: pr-audit.json | |
base-identifier: ${{ github.event.pull_request.base.ref }} | |
comparison-identifier: ${{ github.event.pull_request.head.sha }} | |
timing-output-path: audit-diff.md | |
flakiness-output-path: flakiness-report.md | |
- uses: marocchino/sticky-pull-request-comment@331f8f5b4215f0445d3c07b4967662a32a2d3e31 # v2.9.0 | |
with: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
path: audit-diff.md | |
- name: Check for existence of flakiness report | |
id: check_file | |
uses: andstor/file-existence-action@076e0072799f4942c8bc574a82233e1e4d13e9d6 # v3.0.0 | |
with: | |
files: "flakiness-report.md" | |
- name: comment PR | |
if: steps.check_file.outputs.files_exists == 'true' | |
uses: mshick/add-pr-comment@b8f338c590a895d50bcbfa6c5859251edc8952fc # v2.8.2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
message-path: flakiness-report.md | |
permissions: | |
contents: read | |
pull-requests: write |