[data grid] Performance: selectors #1566
Workflow file for this run
This file contains hidden or 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: CI | |
on: | |
push: | |
branches-ignore: | |
# Renovate branches are always Pull Requests. | |
# We don't need to run CI twice (push+pull_request) | |
- 'renovate/**' | |
pull_request: | |
permissions: {} | |
jobs: | |
continuous-releases: | |
runs-on: ubuntu-latest | |
# do not run on forks | |
if: github.repository == 'mui/mui-x' | |
steps: | |
- run: echo "${{ github.actor }}" | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
fetch-depth: 0 | |
- name: Set up pnpm | |
uses: pnpm/action-setup@a7487c7e89a18df4991f7f222e4898a00d66ddda # v4.1.0 | |
- name: Use Node.js 23.x | |
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 | |
with: | |
node-version: 23 | |
cache: 'pnpm' # https://github.com/actions/setup-node/blob/main/docs/advanced-usage.md#caching-packages-dependencies | |
- run: pnpm pkg-pr-new:install | |
- run: pnpm pkg-pr-new:build | |
- run: pnpm pkg-pr-new:release |