Skip to content

Create LICENSE

Create LICENSE #18

Workflow file for this run

name: run-tests
on:
pull_request:
branches:
- main
push:
branches:
- main
tags:
- "**"
jobs:
tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:
php-version: '8.4'
extensions: dom, curl, libxml, mbstring, zip, pcntl, pdo, sqlite, pdo_sqlite, bcmath, soap, intl, gd, exif, iconv
coverage: none
- name: Run composer install
run: composer install -n --prefer-dist
- uses: actions/setup-node@v4
with:
node-version: 22
- run: npm ci
- name: Build npm
run: npm run build
- name: Run tests
run: vendor/bin/phpunit