Skip to content

Commit

Permalink
fix: 파일을 읽는 메서드 오타 수정 (SP-668)
Browse files Browse the repository at this point in the history
  • Loading branch information
SungHyun627 committed Aug 19, 2024
1 parent d9be260 commit e0d3f92
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lighthouse.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,8 @@ jobs:
let comments = '💡 Lighthouse Reports!'
const desktopResults = JSON.parse(fs.readfileSync(`${{github.workspace}}/lhci_reports/desktop/manifest.json`))
const mobileResults = JSON.parse(fs.readfileSync(`${{github.workspace}}/lhci_reports/mobile/manifest.json`))
const desktopResults = JSON.parse(fs.readFileSync(`${{github.workspace}}/lhci_reports/desktop/manifest.json`))
const mobileResults = JSON.parse(fs.readFileSync(`${{github.workspace}}/lhci_reports/mobile/manifest.json`))
comments = `🖥 Desktop Reports`
Expand Down

0 comments on commit e0d3f92

Please sign in to comment.