Skip to content

Commit

Permalink
[core] Test charts performance with codspeed (#13952)
Browse files Browse the repository at this point in the history
  • Loading branch information
JCQuintas authored Jul 30, 2024
1 parent acfcb3b commit 9f89e31
Show file tree
Hide file tree
Showing 11 changed files with 1,405 additions and 79 deletions.
53 changes: 53 additions & 0 deletions .github/workflows/codspeed.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
name: Benchmarks

on:
push:
branches:
- 'master'
- 'next'
paths:
- 'packages/x-charts*/**'
pull_request:
types:
- labeled
- opened
- synchronize
- reopened
branches:
- 'master'
- 'next'

jobs:
benchmarks:
name: Benchmarks Charts
runs-on: ubuntu-latest
# L1: Run the benchmarks for pushes to the master or next branch and if the changes are in the charts package based on on.push.paths
# L2: Run the benchmarks if we add the label 'component: charts' to the pull request
# L3: Run the benchmarks for pull requests with the label 'component: charts'
if: >
"
${{ github.event_name == 'push' }} ||
${{ github.event_name == 'pull_request' && github.event.action == 'labeled' && github.event.label.name == 'component: charts' }} ||
${{ github.event_name == 'pull_request' && github.event.action != 'labeled' && contains(github.event.pull_request.labels.*.name, 'component: charts')}}
"
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
with:
run_install: false
- name: Use Node.js 20.x
uses: actions/setup-node@1e60f620b9541d16bece96c5465dc8ee9832be0b # v4.0.3
with:
node-version: 20
cache: 'pnpm' # https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-dependencies
- run: pnpm install --frozen-lockfile
# Ensure we are running on the prod version of our libs
# Only charts and license are needed for the benchmarks
- run: pnpm --filter @mui/x-license build
- run: pnpm --filter @mui/x-charts build
- run: pnpm --filter @mui/x-charts-pro build
- name: Run benchmarks
uses: CodSpeedHQ/action@a58b84c0b61569a9cbb7cfb378cc849d65cf1ce5
with:
run: pnpm --filter @mui-x-internal/performance-charts test:performance
token: ${{ secrets.CODSPEED_TOKEN }}
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ performance-snapshot.json
.github/styles/Google
.github/styles/MUI
.github/styles/.vale-config
test-results
Loading

0 comments on commit 9f89e31

Please sign in to comment.