fix: ensure CI required checks run on all PRs

Remove paths-ignore from the pull_request trigger so the CI workflow
always runs and the required Lint/Test/Build Package checks report on
docs-only PRs (previously skipped entirely, blocking merges).

Drop the github.event_name == 'push' gate on the build job so the
required Build Package check also reports on pull requests.
This commit is contained in:
Louis King
2026-06-17 21:54:20 +01:00
parent b38d0f20ff
commit 6ede32b2d4
-7
View File
@@ -11,12 +11,6 @@ on:
- "FUNDING.yml"
pull_request:
branches: [main]
paths-ignore:
- "**/*.md"
- "docs/**"
- ".env.example"
- "LICENSE"
- "FUNDING.yml"
permissions:
contents: read
@@ -85,7 +79,6 @@ jobs:
runs-on: ubuntu-latest
timeout-minutes: 15
needs: [lint, test]
if: github.event_name == 'push'
steps:
- uses: actions/checkout@v6