feat: compatible for rspack 2.0 (#100) #389
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: Benchmark | |
| on: | |
| pull_request: | |
| branches: [main] | |
| paths-ignore: | |
| - '**/*.md' | |
| push: | |
| branches: [main] | |
| paths-ignore: | |
| - '**/*.md' | |
| merge_group: | |
| workflow_dispatch: | |
| jobs: | |
| benchmark: | |
| runs-on: ${{ matrix.os }} | |
| timeout-minutes: 60 | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [macos-15] | |
| case: [react-1k, react-5k, react-10k, ui-components, rome] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 1 | |
| - name: Install Pnpm | |
| run: | | |
| npm i -g corepack@latest -g --force && corepack enable | |
| pnpm -v | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 24.12.0 | |
| - name: Install Global Dependencies | |
| run: | | |
| npm i cross-env -g | |
| - name: Install Dependencies | |
| run: pnpm install && npx puppeteer browsers install chrome | |
| - name: Run Benchmark | |
| run: cross-env CASE=${{ matrix.case }} pnpm benchmark |