< Summary - Envilder Core (TypeScript)

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

Feature is only available for sponsors

Upgrade to PRO version

File(s)

src/envilder/apps/gha/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((error) => {
 011  console.error('🚨 Uh-oh! Looks like Mario fell into the wrong pipe! 🍄💥');
 012  console.error(error instanceof Error ? error.message : String(error));
 013  process.exit(1);
 14});

Methods/Properties

(anonymous_0)