Skip to content

Commit

Permalink
style: fix linting issues
Browse files Browse the repository at this point in the history
  • Loading branch information
char0n committed Oct 2, 2024
1 parent ff8ba2b commit db517d5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ const parseErrors = async (page) => {
};

(async () => {
const browser = await puppeteer.launch({ headless: true, args: ['--no-sandbox'] });
const browser = await puppeteer.launch({
headless: true,
args: ['--no-sandbox'],
});
const page = await browser.newPage();
const definitionFilePath = path.join(
process.env.GITHUB_WORKSPACE,
Expand Down

0 comments on commit db517d5

Please sign in to comment.