feat: support node20 runtime (#1988)
* feat: support node20 * fix * more fixes * maybe final fixes? * format
This commit is contained in:
13
pkg/runner/testdata/actions/node20/action.yml
vendored
Normal file
13
pkg/runner/testdata/actions/node20/action.yml
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
name: 'Hello World'
|
||||
description: 'Greet someone and record the time'
|
||||
inputs:
|
||||
who-to-greet: # id of input
|
||||
description: 'Who to greet'
|
||||
required: true
|
||||
default: 'World'
|
||||
outputs:
|
||||
time: # id of output
|
||||
description: 'The time we greeted you'
|
||||
runs:
|
||||
using: 'node20'
|
||||
main: 'dist/index.js'
|
||||
Reference in New Issue
Block a user