Skip to content

BUGFIX: Remove duplicate wrapping around blog teaser #87

BUGFIX: Remove duplicate wrapping around blog teaser

BUGFIX: Remove duplicate wrapping around blog teaser #87

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
YARN_ENABLE_IMMUTABLE_INSTALLS: false
PHP_VERSION: 8.3
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version-file: '.nvmrc'
cache: 'yarn'
- name: Install dependencies
run: yarn
- name: Run linting
run: yarn lint:yaml
codestyle:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.PHP_VERSION }}
- name: Cache dependencies
uses: actions/cache@v3
with:
path: ~/.composer/cache
key: dependencies-composer-${{ hashFiles('composer.json') }}
- name: Install dependencies
uses: php-actions/composer@v6
with:
php_version: ${{ env.PHP_VERSION }}
version: 2
- name: PHPStan
uses: php-actions/phpstan@v3
with:
php_version: ${{ env.PHP_VERSION }}
version: 2.1.17
command: analyse
path: 'DistributionPackages/'