Skip to content

Maintain editHtml permission via the updates migration array #196

Maintain editHtml permission via the updates migration array

Maintain editHtml permission via the updates migration array #196

Workflow file for this run

name: CI
on: [push]
jobs:
php-cs-fixer:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
- name: PHP CS Fixer
run: vendor/bin/php-cs-fixer check --diff
phpstan:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: php-actions/composer@v6
- uses: php-actions/phpstan@v3
name: PHPStan Static Analysis
with:
path: .
prettier:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- name: Prettier format check
run: npm run format:check
eslint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v4
with:
node-version: 22
cache: npm
- run: npm ci
- name: ESLint
run: npm run lint