Initial commit
Some checks failed
Check Transpiled JavaScript / Check dist/ (push) Successful in 55s
Continuous Integration / TypeScript Tests (push) Successful in 56s
Continuous Integration / GitHub Actions Test (push) Successful in 10s
Lint Codebase / Lint Codebase (push) Failing after 7m55s

This commit is contained in:
2025-01-11 22:39:23 +01:00
commit 3999529881
43 changed files with 38960 additions and 0 deletions

10
__fixtures__/core.ts Normal file
View File

@@ -0,0 +1,10 @@
import type * as core from '@actions/core';
import { jest } from '@jest/globals';
export const debug = jest.fn<typeof core.debug>();
export const error = jest.fn<typeof core.error>();
export const info = jest.fn<typeof core.info>();
export const getInput = jest.fn<typeof core.getInput>();
export const setOutput = jest.fn<typeof core.setOutput>();
export const setFailed = jest.fn<typeof core.setFailed>();
export const warning = jest.fn<typeof core.warning>();

3
__fixtures__/wait.ts Normal file
View File

@@ -0,0 +1,3 @@
import { jest } from '@jest/globals';
export const wait = jest.fn<typeof import('../src/wait.js').wait>();