import { c } from "https://deno.land/x/actionify@0.3.0/mod.ts";
const { error } = c;
Creates an error message and prints the message to the log. This message will create an annotation, which can associate the message with a particular file in your repository. Optionally, your message can specify a position within the file.
import { step, commands } from 'https://deno.land/x/actionify@0.3.0/mod.ts';
const exampleStep = step()
.run(commands.error(
'This is an error', {
file: 'app.js',
line: 1,
col: 5,
endColumn: 7,
}));