Skip to content

Commit 165f3e3

Browse files
committed
chore: gha update + lints
1 parent 709c507 commit 165f3e3

2 files changed

Lines changed: 9 additions & 6 deletions

File tree

.github/workflows/nodejs.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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

report/src/metricDefinitions.ts

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff 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>;

0 commit comments

Comments
 (0)