Skip to content

Commit

Permalink
fix: forEach에 index 레퍼런스 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
hanyugeon committed May 29, 2024
1 parent 89571f7 commit ed79a25
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/lighthouse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
const results = JSON.parse(fs.readFileSync("./lhci_reports/manifest.json"));
let comments = "";
results.forEach((result) => {
results.forEach((result, index) => {
const { summary, jsonPath } = result;
const details = JSON.parse(fs.readFileSync(jsonPath));
Expand Down

0 comments on commit ed79a25

Please sign in to comment.