mirror of
https://github.com/actions/hello-world-javascript-action.git
synced 2025-04-05 14:09:39 +00:00
Convert to ESM
This commit is contained in:
10
src/main.js
10
src/main.js
@ -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
|
||||
}
|
||||
|
Reference in New Issue
Block a user