chore(deps): update devdependency eslint to v10.2.1 #2602
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: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| jobs: | |
| run: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6 | |
| - run: corepack enable | |
| - uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6 | |
| with: | |
| node-version: 24 | |
| cache: pnpm | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Build project | |
| run: pnpm build | |
| - name: Run benchmarks | |
| uses: CodSpeedHQ/action@db35df748deb45fdef0960669f57d627c1956c30 # v4 | |
| with: | |
| mode: simulation | |
| run: pnpm vitest bench | |
| # token retrieved from the CodSpeed app at the previous step | |
| token: ${{ secrets.CODSPEED_TOKEN }} |