Files
gh-action-readme/testdata/yaml-fixtures/test-project-action.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

22 lines
471 B
YAML

---
name: 'Test Project Action'
description: 'A GitHub Action for testing project functionality'
inputs:
project-path:
description: 'Path to the project directory'
required: true
default: '.'
test-command:
description: 'Command to run tests'
required: false
default: 'npm test'
outputs:
test-results:
description: 'Test execution results'
runs:
using: 'node20'
main: 'dist/index.js'
branding:
icon: 'check-circle'
color: 'green'