Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GH Actions: add actionlint job #167

Merged
merged 1 commit into from
Dec 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/cs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ on:
- 'LICENSE'
- 'phpunit.xml.dist'
- '.github/dependabot.yml'
- '.github/workflows/test.yml'
- 'images/**'
pull_request:
paths-ignore:
Expand All @@ -20,7 +19,6 @@ on:
- 'LICENSE'
- 'phpunit.xml.dist'
- '.github/dependabot.yml'
- '.github/workflows/test.yml'
- 'images/**'
# Allow manually triggering the workflow.
workflow_dispatch:
Expand All @@ -32,6 +30,10 @@ concurrency:
cancel-in-progress: true

jobs:
actionlint:
name: 'Lint GH Action workflows'
uses: Yoast/.github/.github/workflows/reusable-actionlint.yml@main

checkcs:
name: 'Check code style'
runs-on: ubuntu-latest
Expand Down
Loading