Skip to content

Dropdown component

Dropdown component #12

Workflow file for this run

name: Tests
on:
pull_request:
branches: [main, develop]
jobs:
js:
name: JS (Node ${{ matrix.node-version }})
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20, 22, 24]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm test
- run: npm run build
- name: Check dist is up to date
run: git diff --exit-code dist/
php:
name: PHP ${{ matrix.php-version }}
runs-on: ubuntu-latest
strategy:
matrix:
php-version: ['8.2', '8.3', '8.4', '8.5']
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ matrix.php-version }}
coverage: none
- run: composer install --no-interaction --prefer-dist
- run: vendor/bin/pest