Bump symfony/twig-bridge from 4.4.40 to 4.4.51 #403
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: test-integration | |
on: | |
push: | |
branches: [ develop, master ] | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
if: always() | |
steps: | |
- name: Checkout | |
uses: actions/checkout@master | |
- name: Get Composer cache directory | |
id: composer-cache | |
run: | | |
echo "::set-output name=dir::$(composer config cache-files-dir)" | |
- name: Restore Composer cache | |
uses: actions/cache@v1 | |
with: | |
path: ${{ steps.composer-cache.outputs.dir }} | |
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
restore-keys: | | |
${{ runner.os }}-composer- | |
- name: Init environment | |
run: cd docker && ./init.sh && cat .env | |
- name: Build Docker environmnent | |
if: always() | |
run: | | |
cd docker && | |
docker-compose -f ../docker-compose.yml up -d --build --force-recreate | |
- name: Install Composer dependencies | |
if: always() | |
run: | | |
docker-compose exec -T php-fpm sh -c ' | |
SYMFONY_ENV=test COMPOSER_MEMORY_LIMIT=-1 composer install --prefer-dist -n -o | |
' | |
- name: Clear Symfony caches | |
if: always() | |
run: | | |
docker-compose exec -T php-fpm sh -c ' | |
./bin/console cache:clear --env=test | |
' | |
- name: Build frontend dependencies | |
if: always() | |
run: | | |
docker-compose exec -T php-fpm sh -c ' | |
CYPRESS_INSTALL_BINARY=0 npm i && \ | |
npm run encore production | |
' | |
- name: Run code quality tests | |
if: always() | |
run: | | |
docker-compose exec -T php-fpm sh -c ' | |
echo -e "\nPHP Mess Detector\n" && \ | |
./ci/phpmd.sh && \ | |
echo -e "\nPHP CodeSniffer\n" && \ | |
./ci/phpcs.sh && \ | |
echo -e "\nPHP Lint\n" && \ | |
./ci/phplint.sh && \ | |
echo -e "\nDocheader checker\n" && \ | |
./ci/docheader.sh && \ | |
echo -e "\nPHP Copy Paste Detector\n" && \ | |
./ci/phpmd.sh | |
' | |
env: | |
SYMFONY_ENV: test | |
- name: Run unit tests | |
if: always() | |
run: | | |
APP_ENV=test docker-compose exec -T php-fpm sh -c ' | |
echo -e "\nPHPUnit unit tests\n" && \ | |
./ci/phpunit.sh | |
' | |
env: | |
SYMFONY_ENV: test | |
- name: Run Cypress a11y tests | |
if: always() | |
continue-on-error: true | |
run: | | |
APP_ENV=test docker-compose exec -T cypress sh -c ' | |
echo -e "\nCypress a11y tests\n" && \ | |
cypress run --spec "./tests/cypress/integration/a11y/*.spec.js" --browser=electron --headless' env: | |
SYMFONY_ENV: test | |
- name: Show log on failure | |
if: failure() | |
run: | | |
cd docker && docker-compose exec -T php-fpm cat var/logs/test/test.log |