Skip to content

Update ci.yml (#15) #31

Update ci.yml (#15)

Update ci.yml (#15) #31

Workflow file for this run

permissions:
contents: read
name: CI
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@2.35.3
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