@@ -32,22 +32,25 @@ jobs:
32
32
runs-on : ${{ matrix.platform.os }}
33
33
34
34
steps :
35
-
36
- - name : Checkout repository
35
+
36
+ - name : Checkout Repository
37
37
uses : actions/checkout@v2
38
38
39
- - name : Install Node.js
39
+ - name : Checkout Actions
40
+ uses : actions/checkout@v4
41
+
42
+ - name : Install Node
40
43
uses : actions/setup-node@v2
41
44
with :
42
45
node-version : ' 22'
43
46
44
- - name : Install Tooling
47
+ - name : Install Package Managers & Benchmark Tools
45
48
run : |
46
49
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
48
51
corepack enable yarn pnpm
49
52
50
- - name : Get Versions
53
+ - name : Log Package Manager Versions
51
54
run : |
52
55
echo "npm $(npm -v)"
53
56
echo "vlt $(vlt -v)"
@@ -57,22 +60,22 @@ jobs:
57
60
echo "bun $(bun -v)"
58
61
echo "$(deno -v)"
59
62
60
- - name : Next Benchmarks
63
+ - name : Run Project Benchmarks (Next)
61
64
uses : ./.github/workflows/run.yaml
62
65
with :
63
66
LOCATION : next
64
67
65
- - name : Astro Benchmarks
68
+ - name : Run Project Benchmarks (Astro)
66
69
uses : ./.github/workflows/run.yaml
67
70
with :
68
71
LOCATION : astro
69
72
70
- - name : Svelte Benchmarks
73
+ - name : Run Project Benchmarks (Svelte)
71
74
uses : ./.github/workflows/run.yaml
72
75
with :
73
76
LOCATION : svelte
74
77
75
- - name : Vue Benchmarks
78
+ - name : Run Project Benchmarks (Vue)
76
79
uses : ./.github/workflows/run.yaml
77
80
with :
78
81
LOCATION : vue
0 commit comments