Reduce bundle size

Replace @actions/core with local functions

@actions/core is unmaintained and poorly designed for projects that just need basic functions
This commit is contained in:
Shivam Mathur
2026-01-20 07:47:23 +05:30
parent 871ff01b2b
commit 109ae4d1c0
8 changed files with 334 additions and 60 deletions

View File

@@ -1,8 +1,8 @@
import path from 'path';
import fs from 'fs';
import {exec} from '@actions/exec';
import * as core from '@actions/core';
import * as config from './config';
import * as core from './core';
import * as coverage from './coverage';
import * as extensions from './extensions';
import * as tools from './tools';