mirror of
https://github.com/ivuorinen/gh-action-readme.git
synced 2026-02-09 05:47:23 +00:00
* 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
22 lines
471 B
YAML
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'
|