Replace the JS test runner #117
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "CI" | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'master' | |
env: | |
fail-fast: true | |
PHPUNIT_FLAGS: "-v" | |
SYMFONY_REQUIRE: ">=4.4" | |
XDEBUG_MODE: "coverage" | |
jobs: | |
test: | |
name: PHP ${{ matrix.php-version }} + Symfony ${{ matrix.symfony-version }} | |
runs-on: 'ubuntu-latest' | |
continue-on-error: ${{ matrix.allowed-to-fail }} | |
strategy: | |
matrix: | |
php-version: ['7.2.5', '7.4', '8.0', '8.1'] | |
variant: [normal] | |
dependencies: [highest] | |
allowed-to-fail: [true] | |
symfony-version: [latest] | |
include: | |
- php-version: '7.4' | |
dependencies: highest | |
variant: normal | |
allowed-to-fail: false | |
symfony-version: latest | |
- php-version: '8.0' | |
dependencies: highest | |
variant: normal | |
allowed-to-fail: false | |
symfony-version: latest | |
- php-version: '8.1' | |
dependencies: highest | |
variant: normal | |
allowed-to-fail: false | |
symfony-version: latest | |
steps: | |
- name: "Checkout code" | |
uses: actions/checkout@v4.1.7 | |
- name: "Install PHP with extensions" | |
uses: shivammathur/setup-php@2.7.0 | |
with: | |
coverage: xdebug | |
php-version: ${{ matrix.php-version }} | |
tools: composer:v2 | |
extensions: intl, xdebug | |
- name: "Set composer cache directory" | |
id: composer-cache | |
run: echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- name: Install variant | |
if: matrix.variant != 'normal' | |
run: composer require ${{ matrix.variant }} --no-update | |
- name: "Install Composer dependencies (${{ matrix.dependencies }})" | |
uses: "ramsey/composer-install@v1" | |
with: | |
dependency-versions: "${{ matrix.dependencies }}" | |
composer-options: "--prefer-dist" | |
- name: "Install PHPUnit" | |
run: vendor/bin/simple-phpunit install | |
- name: "PHPUnit version" | |
run: vendor/bin/simple-phpunit --version | |
- name: "Run unit tests" | |
run: vendor/bin/phpunit --coverage-text --verbose | |
test_js: | |
name: JS tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: "Checkout code" | |
uses: actions/checkout@v4.1.7 | |
- name: "Setup node" | |
uses: actions/setup-node@4.0.3 | |
with: | |
node-version: 'lts/*' | |
- name: "Install dependencies" | |
run: npm install | |
working-directory: Resources | |
- name: "Run tests" | |
run: npm tests | |
working-directory: Resources |