Skip to content

Commit ffed1a8

Browse files
committed
clean up naming for fixutres
1 parent 3572b3a commit ffed1a8

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+45
-43
lines changed

.github/workflows/benchmark.yaml

Lines changed: 13 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -32,15 +32,17 @@ jobs:
3232
with:
3333
node-version: '22'
3434

35-
- name: Install & Setup Package Managers & Benchmark Tools
35+
- name: Install & Setup Tools
3636
run: |
37+
# Install Package Managers & Benchmark Tools
3738
cargo install hyperfine --quiet
3839
npm install -g npm@latest vlt@latest bun@latest deno-bin@latest --silent
3940
corepack enable yarn pnpm
40-
mkdir -p ../results/
41+
42+
# Create Results Directory
43+
mkdir -p ./results/
4144
42-
- name: Package Manager Versions
43-
run: |
45+
# Log Package Manager Versions
4446
NPM_VERSION="$(npm -v)"
4547
VLT_VERSION="$(vlt -v)"
4648
YARN_VERSION="$(corepack yarn@1 -v)"
@@ -56,32 +58,31 @@ jobs:
5658
bun: $BUN_VERSION /
5759
deno: $DENO_VERSION"
5860
echo $ALL
59-
echo $ALL > ../results/versions
61+
echo $ALL > ./results/versions
6062
61-
- name: Configuration
62-
run: |
63+
# Log Benchmark Configurations
6364
echo "COREPACK_ENABLE_STRICT: ${{ env.COREPACK_ENABLE_STRICT }}"
6465
echo "COREPACK_ENABLE_AUTO_PIN: ${{ env.COREPACK_ENABLE_AUTO_PIN }}"
6566
echo "YARN_ENABLE_IMMUTABLE_INSTALLS: ${{ env.YARN_ENABLE_IMMUTABLE_INSTALLS }}"
6667
6768
- name: Run Project Benchmarks (Next)
6869
run: |
69-
bash scripts/run.sh next
70+
bash ./scripts/run.sh next
7071
7172
- name: Run Project Benchmarks (Astro)
7273
run: |
73-
bash scripts/run.sh astro
74+
bash ./scripts/run.sh astro
7475
7576
- name: Run Project Benchmarks (Svelte)
7677
run: |
77-
bash scripts/run.sh svelte
78+
bash ./scripts/run.sh svelte
7879
7980
- name: Run Project Benchmarks (Vue)
8081
run: |
81-
bash scripts/run.sh vue
82+
bash ./scripts/run.sh vue
8283
8384
- name: Upload Benchmark Results
8485
uses: actions/upload-artifact@v4
8586
with:
8687
name: benchmark-results
87-
path: results/
88+
path: ./results/

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.DS_Store

0 commit comments

Comments
 (0)