< Summary - Envilder CLI

Information
Class: src/envilder/apps/gha/entry/Index.ts
Assembly: Default
File(s): src/envilder/apps/gha/entry/Index.ts
Tag: 427_29134414720
Line coverage
0%
Covered lines: 0
Uncovered lines: 2
Coverable lines: 2
Total lines: 14
Line coverage: 0%
Branch coverage
N/A
Covered branches: 0
Total branches: 0
Branch coverage: N/A
Method coverage

Feature is only available for sponsors

Upgrade to PRO version

File(s)

src/envilder/apps/gha/entry/Index.ts

#LineLine coverage
 1#!/usr/bin/env node
 2
 3/**
 4 * Entry point for the GitHub Action
 5 * This file is executed when the action runs
 6 */
 7
 8import { main } from './Gha.js';
 9
 010main().catch(() => {
 11  // Gha.ts already logged an actionable message via presentGhaError()
 12  // before rethrowing; this handler only needs to set the exit code.
 013  process.exit(1);
 14});

Methods/Properties

(anonymous_0)