Skip to content

Bump symfony/polyfill-intl-idn from 1.32.0 to 1.38.1 #90

Bump symfony/polyfill-intl-idn from 1.32.0 to 1.38.1

Bump symfony/polyfill-intl-idn from 1.32.0 to 1.38.1 #90

Workflow file for this run

name: Tests
on: ['push', 'pull_request']
permissions:
contents: read
jobs:
ci:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
node: ['22.x']
php: ['8.4']
name: PHP ${{ matrix.php }} - Node ${{ matrix.node }} - ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup Node ${{ matrix.node }}
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: ${{ matrix.node }}
- name: Setup PHP
uses: shivammathur/setup-php@accd6127cb78bee3e8082180cb391013d204ef9f # v2
with:
php-version: ${{ matrix.php }}
tools: composer:v2
coverage: xdebug
- name: Setup Problem Matches
run: |
echo "::add-matcher::${{ runner.tool_cache }}/php.json"
echo "::add-matcher::${{ runner.tool_cache }}/phpunit.json"
- name: Install PHP dependencies
run: composer install --no-interaction --no-progress --ansi
- name: Install Playwright
run: npx playwright install
- name: Tests
run: composer test