Skip to content
Draft
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
1 change: 1 addition & 0 deletions .github/workflows/plugin-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
plugin-check:
name: Run Plugin Check
runs-on: 'ubuntu-24.04'
if: ${{ github.repository == 'WordPress/ai' || github.event_name == 'pull_request' }}
permissions:
contents: read
timeout-minutes: 20
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ jobs:
phpcs:
name: Run PHPCS coding standards checks
runs-on: ubuntu-24.04
if: ${{ github.repository == 'WordPress/ai' || github.event_name == 'pull_request' }}
permissions:
contents: read
timeout-minutes: 20
Expand Down Expand Up @@ -89,6 +90,7 @@ jobs:
phpstan:
name: Run PHP static analysis
runs-on: ubuntu-24.04
if: ${{ github.repository == 'WordPress/ai' || github.event_name == 'pull_request' }}
permissions:
contents: read
timeout-minutes: 20
Expand Down Expand Up @@ -167,6 +169,7 @@ jobs:
phpunit:
name: Test PHP ${{ matrix.php }} WP ${{ matrix.wp }}${{ matrix.coverage && ' with coverage' || '' }}
runs-on: ubuntu-24.04
if: ${{ github.repository == 'WordPress/ai' || github.event_name == 'pull_request' }}
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -272,6 +275,7 @@ jobs:
jslint:
name: Run JavaScript code quality checks
runs-on: ubuntu-24.04
if: ${{ github.repository == 'WordPress/ai' || github.event_name == 'pull_request' }}
permissions:
contents: read
timeout-minutes: 20
Expand Down
Loading