File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -30,11 +30,11 @@ jobs:
3030 uses : actions/setup-node@3235b876344d2a9aa001b8d1453c930bba69e610 # v3.9.1
3131 with :
3232 node-version : " 20"
33- cache : " npm "
34- cache-dependency-path : " ./report/package-lock.json "
33+ cache : " yarn "
34+ cache-dependency-path : " ./report/yarn.lock "
3535
3636 - name : Install dependencies
37- run : npm ci
37+ run : yarn install --immutable
3838 - name : Check formatting
3939 run : npm run check
4040 - name : Run tests
Original file line number Diff line number Diff line change @@ -225,19 +225,22 @@ export const CHART_CONFIG = {
225225 reth_reth_flashblocks_sender_recovery_duration : {
226226 type : "line" ,
227227 title : "Flashblock Sender Recovery Duration" ,
228- description : "Shows the time taken to recover senders from flashblock transactions" ,
228+ description :
229+ "Shows the time taken to recover senders from flashblock transactions" ,
229230 unit : "s" ,
230231 } ,
231232 reth_reth_flashblocks_upstream_messages : {
232233 type : "line" ,
233234 title : "Flashblock Upstream Messages" ,
234- description : "Shows the number of upstream messages received from the flashblock stream" ,
235+ description :
236+ "Shows the number of upstream messages received from the flashblock stream" ,
235237 unit : "count" ,
236238 } ,
237239 reth_reth_flashblocks_bundle_state_clone_duration : {
238240 type : "line" ,
239241 title : "Flashblock Bundle State Clone Duration" ,
240- description : "Shows the time taken to clone the bundle state for flashblock processing" ,
242+ description :
243+ "Shows the time taken to clone the bundle state for flashblock processing" ,
241244 unit : "s" ,
242245 } ,
243246} satisfies Record < string , ChartConfig > ;
You can’t perform that action at this time.
0 commit comments