Skip to content

Added splitText() function and updated getLinesCount() function to th… #221

Added splitText() function and updated getLinesCount() function to th…

Added splitText() function and updated getLinesCount() function to th… #221

Workflow file for this run

name: Lint
on: [ push, pull_request ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install PHP with extensions
uses: shivammathur/setup-php@v2
with:
php-version: '8.2'
coverage: none
- name: Install dependencies
run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
- name: Lint Markdown
uses: DavidAnson/markdownlint-cli2-action@v15
- name: Validate Composer
run: composer validate --strict