Skip to content

Commit 0803e40

Browse files
committed
chore: skip CI for docs update
1 parent 031c84a commit 0803e40

File tree

1 file changed

+32
-29
lines changed

1 file changed

+32
-29
lines changed

.github/workflows/benchmark.yml

Lines changed: 32 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -2,48 +2,51 @@ name: Benchmark
22

33
on:
44
pull_request:
5-
branches: [ main ]
5+
branches: [main]
6+
paths-ignore:
7+
- '**/*.md'
68

79
push:
8-
branches: [ main ]
10+
branches: [main]
11+
paths-ignore:
12+
- '**/*.md'
913

1014
merge_group:
1115

1216
workflow_dispatch:
1317

14-
1518
jobs:
1619
benchmark:
1720
runs-on: ${{ matrix.os }}
1821
timeout-minutes: 60
1922
strategy:
2023
fail-fast: false
2124
matrix:
22-
os: [ macos-15 ]
23-
case: [ react-1k, react-5k, react-10k, ui-components, rome ]
25+
os: [macos-15]
26+
case: [react-1k, react-5k, react-10k, ui-components, rome]
2427

2528
steps:
26-
- name: Checkout
27-
uses: actions/checkout@v6
28-
with:
29-
fetch-depth: 1
30-
31-
- name: Install Pnpm
32-
run: |
33-
npm i -g corepack@latest -g --force && corepack enable
34-
pnpm -v
35-
36-
- name: Setup Node.js
37-
uses: actions/setup-node@v6
38-
with:
39-
node-version: 24.11.1
40-
41-
- name: Install Global Dependencies
42-
run: |
43-
npm i cross-env -g
44-
45-
- name: Install Dependencies
46-
run: pnpm install && npx puppeteer browsers install chrome
47-
48-
- name: Run Benchmark
49-
run: cross-env CASE=${{ matrix.case }} pnpm benchmark
29+
- name: Checkout
30+
uses: actions/checkout@v6
31+
with:
32+
fetch-depth: 1
33+
34+
- name: Install Pnpm
35+
run: |
36+
npm i -g corepack@latest -g --force && corepack enable
37+
pnpm -v
38+
39+
- name: Setup Node.js
40+
uses: actions/setup-node@v6
41+
with:
42+
node-version: 24.11.1
43+
44+
- name: Install Global Dependencies
45+
run: |
46+
npm i cross-env -g
47+
48+
- name: Install Dependencies
49+
run: pnpm install && npx puppeteer browsers install chrome
50+
51+
- name: Run Benchmark
52+
run: cross-env CASE=${{ matrix.case }} pnpm benchmark

0 commit comments

Comments
 (0)