Skip to content

Bump @codemirror/language from 6.10.6 to 6.10.8 in /panel #270

Bump @codemirror/language from 6.10.6 to 6.10.8 in /panel

Bump @codemirror/language from 6.10.6 to 6.10.8 in /panel #270

Workflow file for this run

name: Check
on:
push:
branches:
- 2.x
pull_request:
branches:
- 2.x
permissions:
contents: read
jobs:
check:
runs-on: ubuntu-latest
steps:
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.3'
tools: composer
- uses: actions/checkout@v4
- name: Validate composer.json and composer.lock
run: composer validate --strict
- name: Install dependencies
run: composer install
- name: Check coding style
run: composer fix:check
- name: Run PHPStan
run: composer phpstan
- name: Run Rector
run: composer rector:check