Convert to ESM

This commit is contained in:
Nick Alteen
2025-01-08 11:40:16 -05:00
parent f887349d3c
commit 4a533d2933
31 changed files with 36853 additions and 41599 deletions

12
__fixtures__/core.js Normal file
View File

@ -0,0 +1,12 @@
/**
* This file is used to mock the `@actions/core` module in tests.
*/
import { jest } from '@jest/globals'
export const debug = jest.fn()
export const error = jest.fn()
export const info = jest.fn()
export const getInput = jest.fn()
export const setOutput = jest.fn()
export const setFailed = jest.fn()
export const warning = jest.fn()

5
__fixtures__/github.js Normal file
View File

@ -0,0 +1,5 @@
export const context = {
payload: {
actor: 'mona'
}
}