Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/actionify/config/deps/github.ts>coreActions.group

Create and manage your GitHub workflows with TypeScript and Deno.
Go to Latest
function coreActions.group
import { coreActions } from "https://deno.land/x/actionify@0.2.0/config/deps/github.ts";
const { group } = coreActions;

Wrap an asynchronous function call in a group.

Returns the same type as the function itself.

Parameters

name: string

The name of the group

fn: () => Promise<T>

The function to wrap in the group

Returns

Promise<T>