mirror of
https://github.com/ivuorinen/gh-action-readme.git
synced 2026-01-26 11:14:04 +00:00
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
This commit is contained in:
1
testdata/composite-action/action.yml
vendored
1
testdata/composite-action/action.yml
vendored
@@ -1,3 +1,4 @@
|
||||
---
|
||||
name: Composite Example Action
|
||||
description: 'Test Composite Action for gh-action-readme dependency analysis'
|
||||
inputs:
|
||||
|
||||
1
testdata/example-action/action.yml
vendored
1
testdata/example-action/action.yml
vendored
@@ -1,3 +1,4 @@
|
||||
---
|
||||
name: Example Action
|
||||
description: 'Test Action for gh-action-readme'
|
||||
inputs:
|
||||
|
||||
1
testdata/example-action/config.yaml
vendored
1
testdata/example-action/config.yaml
vendored
@@ -1,3 +1,4 @@
|
||||
---
|
||||
# Action-specific configuration
|
||||
theme: "github"
|
||||
variables:
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
---
|
||||
name: 'Basic Composite Action'
|
||||
description: 'A simple composite action with basic steps'
|
||||
inputs:
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
---
|
||||
name: 'Complex Composite Workflow'
|
||||
description: 'A complex composite action demonstrating advanced features'
|
||||
inputs:
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
---
|
||||
name: 'Composite Action with Dependencies'
|
||||
description: 'A composite action that uses external actions'
|
||||
inputs:
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
---
|
||||
name: 'Basic Docker Action'
|
||||
description: 'A simple Docker-based action'
|
||||
inputs:
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
---
|
||||
name: 'Docker Action with Environment'
|
||||
description: 'Docker action with environment variables and advanced configuration'
|
||||
inputs:
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
---
|
||||
name: 'Node.js 16 Action'
|
||||
description: 'JavaScript action running on Node.js 16'
|
||||
inputs:
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
---
|
||||
name: 'Simple JavaScript Action'
|
||||
description: 'A simple JavaScript action for testing'
|
||||
inputs:
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
---
|
||||
name: 'Comprehensive JavaScript Action'
|
||||
description: 'A JavaScript action with all possible fields for testing'
|
||||
author: 'Test Author <test@example.com>'
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
---
|
||||
theme: default
|
||||
output_format: md
|
||||
repo_overrides:
|
||||
|
||||
1
testdata/yaml-fixtures/composite-action.yml
vendored
1
testdata/yaml-fixtures/composite-action.yml
vendored
@@ -1,3 +1,4 @@
|
||||
---
|
||||
name: 'Composite Action'
|
||||
description: 'A composite action with multiple steps'
|
||||
inputs:
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
---
|
||||
theme: professional
|
||||
output_format: html
|
||||
output_dir: docs
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
---
|
||||
theme: default
|
||||
output_format: md
|
||||
output_dir: .
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
---
|
||||
theme: github
|
||||
output_format: md
|
||||
output_dir: docs
|
||||
|
||||
1
testdata/yaml-fixtures/docker-action.yml
vendored
1
testdata/yaml-fixtures/docker-action.yml
vendored
@@ -1,3 +1,4 @@
|
||||
---
|
||||
name: 'Docker Action'
|
||||
description: 'A Docker-based GitHub Action'
|
||||
inputs:
|
||||
|
||||
1
testdata/yaml-fixtures/global-config.yml
vendored
1
testdata/yaml-fixtures/global-config.yml
vendored
@@ -1,3 +1,4 @@
|
||||
---
|
||||
theme: default
|
||||
output_format: md
|
||||
github_token: global-token
|
||||
|
||||
1
testdata/yaml-fixtures/minimal-action.yml
vendored
1
testdata/yaml-fixtures/minimal-action.yml
vendored
@@ -1,3 +1,4 @@
|
||||
---
|
||||
name: 'Minimal Action'
|
||||
description: 'Minimal test action'
|
||||
runs:
|
||||
|
||||
1
testdata/yaml-fixtures/minimal-config.yml
vendored
1
testdata/yaml-fixtures/minimal-config.yml
vendored
@@ -1,2 +1,3 @@
|
||||
---
|
||||
theme: minimal
|
||||
github_token: config-token
|
||||
|
||||
1
testdata/yaml-fixtures/my-new-action.yml
vendored
1
testdata/yaml-fixtures/my-new-action.yml
vendored
@@ -1,3 +1,4 @@
|
||||
---
|
||||
name: 'My New Action'
|
||||
description: 'A brand new GitHub Action'
|
||||
inputs:
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
---
|
||||
theme: professional
|
||||
output_format: html
|
||||
output_dir: docs
|
||||
|
||||
1
testdata/yaml-fixtures/repo-config.yml
vendored
1
testdata/yaml-fixtures/repo-config.yml
vendored
@@ -1,3 +1,4 @@
|
||||
---
|
||||
theme: github
|
||||
output_format: md
|
||||
output_dir: docs
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
---
|
||||
scenarios:
|
||||
# JavaScript Action Scenarios
|
||||
- id: "simple-javascript"
|
||||
|
||||
1
testdata/yaml-fixtures/simple-action.yml
vendored
1
testdata/yaml-fixtures/simple-action.yml
vendored
@@ -1,3 +1,4 @@
|
||||
---
|
||||
name: 'Simple Action'
|
||||
description: 'A simple GitHub Action for testing'
|
||||
inputs:
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
---
|
||||
name: 'Test Composite Action'
|
||||
description: 'Test action for update testing'
|
||||
runs:
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
---
|
||||
name: 'Test Project Action'
|
||||
description: 'A GitHub Action for testing project functionality'
|
||||
inputs:
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
---
|
||||
name: Test Action
|
||||
description: A test action
|
||||
runs:
|
||||
|
||||
Reference in New Issue
Block a user