Skip to content

Update README.md

Update README.md #50

Workflow file for this run

permissions:

Check failure on line 1 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

(Line: 13, Col: 14): Unexpected value ''
contents: read
name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: # uses: shivammathur/setup-php@20529878ed81ef8e78ddf08b480401e6101a850f
with:
php-version: '8.2'
- name: Install dependencies
run: composer install --no-interaction
- name: PHP Lint
run: composer lint:php
- name: PHPStan
run: composer analyze:php
- name: PHPUnit
run: composer test:php
- name: Node tests
run: npm test