feat: add problem matchers for deno lint (#62)

This commit is contained in:
Ryo Nakamura
2024-12-05 17:29:54 -08:00
committed by GitHub
parent 1c4873e05d
commit 56da422736
2 changed files with 28 additions and 0 deletions
+7
View File
@@ -1,5 +1,6 @@
import process from "node:process";
import core from "@actions/core";
import path from "node:path";
import {
getDenoVersionFromFile,
parseVersionRange,
@@ -38,6 +39,12 @@ async function main() {
await install(version);
core.info(
`::add-matcher::${
path.join(import.meta.dirname ?? ".", "deno-problem-matchers.json")
}`,
);
core.setOutput("deno-version", version.version);
core.setOutput("release-channel", version.kind);