Skip to content

Commit 87cbfa2

Browse files
committed
chore: cleanup benchmark jobs
1 parent c3ff7fb commit 87cbfa2

File tree

1 file changed

+13
-10
lines changed

1 file changed

+13
-10
lines changed

Diff for: .github/workflows/benchmark.yaml

+13-10
Original file line numberDiff line numberDiff line change
@@ -32,22 +32,25 @@ jobs:
3232
runs-on: ${{ matrix.platform.os }}
3333

3434
steps:
35-
36-
- name: Checkout repository
35+
36+
- name: Checkout Repository
3737
uses: actions/checkout@v2
3838

39-
- name: Install Node.js
39+
- name: Checkout Actions
40+
uses: actions/checkout@v4
41+
42+
- name: Install Node
4043
uses: actions/setup-node@v2
4144
with:
4245
node-version: '22'
4346

44-
- name: Install Tooling
47+
- name: Install Package Managers & Benchmark Tools
4548
run: |
4649
cargo install hyperfine --quiet
47-
npm install -g npm@latest vlt@latest bun@latest deno-bin@latest
50+
npm install -g npm@latest vlt@latest bun@latest deno-bin@latest --silent
4851
corepack enable yarn pnpm
4952
50-
- name: Get Versions
53+
- name: Log Package Manager Versions
5154
run: |
5255
echo "npm $(npm -v)"
5356
echo "vlt $(vlt -v)"
@@ -57,22 +60,22 @@ jobs:
5760
echo "bun $(bun -v)"
5861
echo "$(deno -v)"
5962
60-
- name: Next Benchmarks
63+
- name: Run Project Benchmarks (Next)
6164
uses: ./.github/workflows/run.yaml
6265
with:
6366
LOCATION: next
6467

65-
- name: Astro Benchmarks
68+
- name: Run Project Benchmarks (Astro)
6669
uses: ./.github/workflows/run.yaml
6770
with:
6871
LOCATION: astro
6972

70-
- name: Svelte Benchmarks
73+
- name: Run Project Benchmarks (Svelte)
7174
uses: ./.github/workflows/run.yaml
7275
with:
7376
LOCATION: svelte
7477

75-
- name: Vue Benchmarks
78+
- name: Run Project Benchmarks (Vue)
7679
uses: ./.github/workflows/run.yaml
7780
with:
7881
LOCATION: vue

0 commit comments

Comments
 (0)