We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86e6a03 commit 464f5bcCopy full SHA for 464f5bc
1 file changed
.github/workflows/perf-tests.yml
@@ -32,6 +32,7 @@ jobs:
32
permissions:
33
contents: read
34
actions: read
35
+ pull-requests: write
36
37
steps:
38
# ── Setup ──────────────────────────────────────────────
@@ -83,6 +84,14 @@ jobs:
83
84
packages/e2e-test-app-fabric/test/__perf__/**/__perf_snapshots__/
85
retention-days: 30
86
87
+ # ── PR Comment ────────────────────────────────────────
88
+ - name: Post perf results to PR
89
+ if: github.event_name == 'pull_request' && always()
90
+ working-directory: packages/e2e-test-app-fabric
91
+ env:
92
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
93
+ run: yarn perf:ci:report
94
+
95
# ── Status Gate ────────────────────────────────────────
96
- name: Check for regressions
97
if: steps.compare.outcome == 'failure'
0 commit comments