mirror of
https://github.com/Shopify/draggable.git
synced 2025-12-08 20:15:56 +00:00
12 lines
275 B
TypeScript
12 lines
275 B
TypeScript
import core from '@actions/core';
|
|
|
|
export async function main() {
|
|
core.info('Test info');
|
|
const token = core.getInput('test');
|
|
/* eslint-disable no-console */
|
|
console.log(token);
|
|
/* eslint-enable no-console */
|
|
}
|
|
|
|
main().catch((err) => core.setFailed(err.message));
|