Prepare javascript dependency to version 6.0.0 #97
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 }} | |
# TODO find a different setup for the JS testsuite as phantomjs is abandoned and is not available on newer runner images | |
runs-on: 'ubuntu-20.04' | |
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/[email protected] | |
- name: "Install PHP with extensions" | |
uses: shivammathur/[email protected] | |
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 | |
- name: "Run phantomjs tests" | |
run: phantomjs Resources/js/run-qunit.js file://`pwd`/Resources/js/index.html | |
- name: "Run phantomjs tests ES5" | |
run: phantomjs Resources/js/run-qunit.js file://`pwd`/Resources/js/index-with-es5-shim.html |