Try it out using docker image:
wsk action create hello-deno main.ts --docker=satyarohith/openwhisk-runtime-denoThe content of the main.ts is as bellow.
export default function main(args: {[key: string]: any}) {
return {
message: `Hello, ${args.name || 'World'}!`
};
}