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

View File

@ -1,11 +1,11 @@
const core = require('@actions/core')
const github = require('@actions/github')
import * as core from '@actions/core'
import * as github from '@actions/github'
/**
* The main function for the action.
* @returns {Promise<void>} Resolves when the action is complete.
*/
async function run() {
export async function run() {
try {
// The `who-to-greet` input is defined in action metadata file
const whoToGreet = core.getInput('who-to-greet', { required: true })
@ -24,7 +24,3 @@ async function run() {
core.setFailed(error.message)
}
}
module.exports = {
run
}