Files
gh-action-readme/testdata/yaml-fixtures/actions/javascript/simple.yml
Ismo Vuorinen b80ecfce92 chore: even more linting, test fixes (#24)
* chore(lint): funcorder

* chore(lint): yamlfmt, ignored broken test yaml files

* chore(tests): tests do not output garbage, add coverage

* chore(lint): fix editorconfig violations

* chore(lint): move from eclint to editorconfig-checker

* chore(lint): add pre-commit, run and fix

* chore(ci): we use renovate to manage updates
2025-08-06 23:44:32 +03:00

21 lines
396 B
YAML

---
name: 'Simple JavaScript Action'
description: 'A simple JavaScript action for testing'
inputs:
message:
description: 'Message to display'
required: true
level:
description: 'Log level'
required: false
default: 'info'
outputs:
result:
description: 'The result of the action'
runs:
using: 'node20'
main: 'index.js'
branding:
icon: 'activity'
color: 'blue'