Skip to content

Commit d16e095

Browse files
committed
fix: Update benchmark script path in daily benchmark workflow
- Changed the path of the benchmark script from `dist/benchmark-single-tool.js` to `dist/scripts/benchmark-single-tool.js` for better organization and consistency with recent refactors. This update ensures the workflow correctly references the new script location.
1 parent 6ba53d4 commit d16e095

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/daily-benchmark.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
- name: Run benchmark for ${{ matrix.tool }}
106106
id: benchmark
107107
run: |
108-
node dist/benchmark-single-tool.js ${{ matrix.tool }} > benchmark-results-${{ matrix.tool }}.json
108+
node dist/scripts/benchmark-single-tool.js ${{ matrix.tool }} > benchmark-results-${{ matrix.tool }}.json
109109
110110
- name: Upload benchmark results for ${{ matrix.tool }}
111111
uses: actions/upload-artifact@v4

.github/workflows/test-automation.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ jobs:
4444
4545
- name: Test compiled JavaScript files exist
4646
run: |
47-
test -f dist/benchmark-json.js
48-
echo "✅ dist/benchmark-json.js exists"
47+
test -f dist/scripts/benchmark-json.js
48+
echo "✅ dist/scripts/benchmark-json.js exists"
4949
test -f dist/scripts/compare-and-update-readme.js
5050
echo "✅ dist/scripts/compare-and-update-readme.js exists"
5151

0 commit comments

Comments
 (0)