Skip to content

chore: add repository scaffolding (#8) #4

chore: add repository scaffolding (#8)

chore: add repository scaffolding (#8) #4

Workflow file for this run

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