Skip to content

Fix TermNodes returning null when not array and fix type being set to generic TermNode in Taxonomy field #301

Fix TermNodes returning null when not array and fix type being set to generic TermNode in Taxonomy field

Fix TermNodes returning null when not array and fix type being set to generic TermNode in Taxonomy field #301

Workflow file for this run

name: Code Quality
on:
push:
branches:
- develop
- main
pull_request:
branches:
- develop
- main
jobs:
run:
runs-on: ubuntu-latest
name: Check code
strategy:
matrix:
php: [ 8.1 ]
steps:
- name: Cancel previous runs of this workflow (pull requests only)
if: ${{ github.event_name == 'pull_request' }}
uses: styfle/cancel-workflow-action@0.11.0
with:
access_token: ${{ github.token }}
- name: Checkout
uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
coverage: none
- name: Install dependencies
uses: ramsey/composer-install@v2
with:
composer-options: "--no-progress"
- name: Run PHPStan
run: composer run-script phpstan