From 2bfaeca11595e3e14ffd0287630c73a8154d8c2d Mon Sep 17 00:00:00 2001 From: David Anson Date: Sun, 28 Jun 2026 00:00:21 +0000 Subject: [PATCH] Address new lint error from previous commit, freshen generated index.js file. --- dist/index.mjs | 1 + markdownlint-cli2-action.mjs | 1 + 2 files changed, 2 insertions(+) diff --git a/dist/index.mjs b/dist/index.mjs index 6a33f2a..5b58e45 100644 --- a/dist/index.mjs +++ b/dist/index.mjs @@ -81167,6 +81167,7 @@ const parameters = { ] } }; +// eslint-disable-next-line unicorn/prefer-await markdownlint_cli2_main(parameters).then( (code) => code && setFailed(`Failed with exit code: ${code}`), (error) => setFailed(`Failed due to error: ${error}`) diff --git a/markdownlint-cli2-action.mjs b/markdownlint-cli2-action.mjs index 6dc26a6..3b7eb17 100644 --- a/markdownlint-cli2-action.mjs +++ b/markdownlint-cli2-action.mjs @@ -74,6 +74,7 @@ const parameters = { ] } }; +// eslint-disable-next-line unicorn/prefer-await markdownlintCli2(parameters).then( (code) => code && core.setFailed(`Failed with exit code: ${code}`), (error) => core.setFailed(`Failed due to error: ${error}`)