File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 40
40
- name : Monitor Metrics
41
41
id : monitor
42
42
run : |
43
- result=$(cd scripts && MONITOR=1 pnpm compare ${{ matrix.product }})
43
+ result=$(cd scripts && MONITOR=1 node ./dist/ compare.js ${{ matrix.product }})
44
44
echo "$result"
45
45
echo "diff-result=${result//$'\n'/'@@'}" >> $GITHUB_OUTPUT
46
46
if [[ $result =~ "Threshold exceeded" ]]; then
Original file line number Diff line number Diff line change 73
73
- id : print-results
74
74
name : Print results
75
75
run : |
76
- result=$(cd scripts && pnpm compare ${{ inputs.product }})
76
+ result=$(cd scripts && node ./dist/ compare.js ${{ inputs.product }})
77
77
echo "$result"
78
78
echo "diff-result=${result//$'\n'/'@@'}" >> $GITHUB_OUTPUT
79
79
if [[ $result =~ "Threshold exceeded" ]]; then
Original file line number Diff line number Diff line change 4
4
"scripts" : {
5
5
"start" : " npm run build && node ./dist/main.js" ,
6
6
"start:pr" : " npm run build && node ./dist/pr-bench.js" ,
7
- "compare" : " node ./dist/compare.js" ,
7
+ "compare" : " npm run build && node ./dist/compare.js" ,
8
8
"dev" : " tsc --watch" ,
9
9
"build" : " rm -rf ./dist && tsc"
10
10
},
You can’t perform that action at this time.
0 commit comments