Skip to content
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .distignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ tests/
.browserslistrc
.distignore
.editorconfig
.eslintrc.js
eslint.config.mjs
.gitignore
.phpunit.result.cache
.prettierrc.js
Expand Down
18 changes: 18 additions & 0 deletions .github/workflows/plugin-check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Run WP.org's plugin check.
#
# This file is managed in https://github.com/happyprime/projects
name: WP.org Plugin Check

on:
push:
branches:
- trunk
pull_request:
branches:
- trunk

jobs:
call-workflow:
uses: happyprime/workflows/.github/workflows/plugin-check.yml@trunk
with:
php-version: '8.3'
19 changes: 19 additions & 0 deletions .github/workflows/verify-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# This file is managed in https://github.com/happyprime/projects
name: Verify build (Node 24)

on: pull_request

# The GITHUB_TOKEN used by Dependabot has read-only permissions by default. We
# provide write permissions to this workflow so that comments can be left on
# the pull request.
#
# @see https://docs.github.com/en/code-security/dependabot/working-with-dependabot/automating-dependabot-with-github-actions#changing-github_token-permissions
permissions:
contents: read
pull-requests: write

jobs:
call-workflow:
uses: happyprime/workflows/.github/workflows/verify-build.yml@trunk
with:
node-version: 24
Loading