Skip to content

Commit 4832b09

Browse files
committed
add ignores
1 parent 4912b11 commit 4832b09

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

.github/workflows/benchmark.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -36,34 +36,34 @@ jobs:
3636
- name: Benchmark package managers
3737
run: |
3838
echo "Benchmarking npm (cold cache)..."
39-
hyperfine --prepare 'rm -rf node_modules package-lock.json' 'npm install' --export-markdown npm_cold.md
39+
hyperfine -i --prepare 'rm -rf node_modules package-lock.json' 'npm install' --export-markdown npm_cold.md
4040
4141
echo "Benchmarking npm (warm cache)..."
42-
hyperfine 'npm install' --export-markdown npm_warm.md
42+
hyperfine -i 'npm install' --export-markdown npm_warm.md
4343
4444
echo "Benchmarking yarn (cold cache)..."
45-
hyperfine --prepare 'rm -rf node_modules yarn.lock' 'yarn install' --export-markdown yarn_cold.md
45+
hyperfine -i --prepare 'rm -rf node_modules yarn.lock' 'yarn install' --export-markdown yarn_cold.md
4646
4747
echo "Benchmarking yarn (warm cache)..."
48-
hyperfine 'yarn install' --export-markdown yarn_warm.md
48+
hyperfine -i 'yarn install' --export-markdown yarn_warm.md
4949
5050
echo "Benchmarking pnpm (cold cache)..."
51-
hyperfine --prepare 'rm -rf node_modules pnpm-lock.yaml' 'pnpm install' --export-markdown pnpm_cold.md
51+
hyperfine -i --prepare 'rm -rf node_modules pnpm-lock.yaml' 'pnpm install' --export-markdown pnpm_cold.md
5252
5353
echo "Benchmarking pnpm (warm cache)..."
54-
hyperfine 'pnpm install' --export-markdown pnpm_warm.md
54+
hyperfine -i 'pnpm install' --export-markdown pnpm_warm.md
5555
5656
echo "Benchmarking bun (cold cache)..."
57-
hyperfine --prepare 'rm -rf node_modules bun.lockb' 'bun install' --export-markdown bun_cold.md
57+
hyperfine -i --prepare 'rm -rf node_modules bun.lockb' 'bun install' --export-markdown bun_cold.md
5858
5959
echo "Benchmarking bun (warm cache)..."
60-
hyperfine 'bun install' --export-markdown bun_warm.md
60+
hyperfine -i 'bun install' --export-markdown bun_warm.md
6161
6262
echo "Benchmarking deno (cold cache)..."
63-
hyperfine --prepare 'rm -rf deno_modules' 'deno cache' --export-markdown deno_cold.md
63+
hyperfine -i --prepare 'rm -rf deno_modules' 'deno cache' --export-markdown deno_cold.md
6464
6565
echo "Benchmarking deno (warm cache)..."
66-
hyperfine 'deno cache' --export-markdown deno_warm.md
66+
hyperfine -i 'deno cache' --export-markdown deno_warm.md
6767
6868
echo "Benchmark Results:"
6969
cat npm_cold.md

0 commit comments

Comments
 (0)