Skip to content

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Noelierx authored Aug 8, 2024
1 parent 56804c6 commit 2d72148
Showing 1 changed file with 174 additions and 82 deletions.
256 changes: 174 additions & 82 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,89 +1,181 @@
name: CI

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]
pull_request:
types: [opened, synchronize, reopened, ready_for_review]

env:
TZ: UTC
PHP_VERSION: 7.3
NODE_VERSION: 12.x
TZ: UTC
PHP_VERSION: 7.3
NODE_VERSION: 12.x

jobs:
php:
runs-on: ubuntu-latest
name: php / ${{ matrix.test.name }}
strategy:
fail-fast: false
matrix:
test:
- name: Lint Symfony's templates files
script: bin/console lint:twig templates/

- name: Lint Symfony's config files
script: bin/console lint:yaml config/ --parse-tags

- name: Lint Symfony's translations files
script: bin/console lint:xliff translations

# Available in Symfony 4.4, see https://symfony.com/blog/new-in-symfony-4-4-service-container-linter
# - name: Lint Symfony's container
# script: bin/console lint:container

steps:
- uses: actions/checkout@v2

- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.PHP_VERSION }}
coverage: none
extensions: ctype, iconv, intl
ini-values: date.timezone=${{ env.TZ }}, memory_limit=-1, session.gc_probability=0, opcache.enable=1, opcache.enable_cli=1, opcache.memory_consumption=256, opcache.max_accelerated_files=20000, opcache.validate_timestamps=0, realpath_cache_size=4096K, realpath_cache_ttl=600

- name: Cache Composer dependencies
uses: actions/cache@v2
with:
path: $(composer config cache-files-dir)
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

- name: Install dependencies
run: composer install --no-progress --prefer-dist --optimize-autoloader

- name: Tests
run: "${{ matrix.test.script }}"

javascript:
runs-on: ubuntu-latest
name: javascript / ${{ matrix.test.name }}
strategy:
fail-fast: false
matrix:
test:
- name: Building for development
script: yarn dev

- name: Building for production
script: yarn build

steps:
- name: Install Node.js
uses: actions/setup-node@v2-beta
with:
node-version: ${{ env.NODE_VERSION }}

- uses: actions/checkout@v2

- name: Cache node_modules
uses: actions/cache@v2
with:
path: $(yarn cache dir)
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-modules-
- run: yarn install --frozen-lockfile

- name: Tests
run: "${{ matrix.test.script }}"
php:
runs-on: ubuntu-latest
name: php / ${{ matrix.test.name }}
strategy:
fail-fast: false
matrix:
test:
- name: Lint Symfony's templates files
script: bin/console lint:twig templates/

- name: Lint Symfony's config files
script: bin/console lint:yaml config/ --parse-tags

- name: Lint Symfony's translations files
script: bin/console lint:xliff translations

steps:
- uses: actions/checkout@v2

- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.PHP_VERSION }}
coverage: none
extensions: ctype, iconv, intl
ini-values: date.timezone=${{ env.TZ }}, memory_limit=-1, session.gc_probability=0, opcache.enable=1, opcache.enable_cli=1, opcache.memory_consumption=256, opcache.max_accelerated_files=20000, opcache.validate_timestamps=0, realpath_cache_size=4096K, realpath_cache_ttl=600

- name: Install Composer 1.x
run: composer self-update --1

- name: Cache Composer dependencies
uses: actions/cache@v2
with:
path: $(composer config cache-files-dir)
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

- name: Update dependencies
run: composer update --no-progress --prefer-dist --optimize-autoloader

- name: Install dependencies
run: composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader

- name: Tests
run: "${{ matrix.test.script }}"

javascript:
runs-on: ubuntu-latest
name: javascript / ${{ matrix.test.name }}
strategy:
fail-fast: false
matrix:
test:
- name: Building for development
script: yarn dev

- name: Building for production
script: yarn build

steps:
- name: Install Node.js
uses: actions/setup-node@v2-beta
with:
node-version: ${{ env.NODE_VERSION }}

- uses: actions/checkout@v2

- name: Cache node_modules
uses: actions/cache@v2
with:
path: $(yarn cache dir)
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-modules-
- run: yarn install --frozen-lockfile

- name: Tests
run: "${{ matrix.test.script }}"name: CI

on:
pull_request:
types: [opened, synchronize, reopened, ready_for_review]

env:
TZ: UTC
PHP_VERSION: 7.3
NODE_VERSION: 12.x

jobs:
php:
runs-on: ubuntu-latest
name: php / ${{ matrix.test.name }}
strategy:
fail-fast: false
matrix:
test:
- name: Lint Symfony's templates files
script: bin/console lint:twig templates/

- name: Lint Symfony's config files
script: bin/console lint:yaml config/ --parse-tags

- name: Lint Symfony's translations files
script: bin/console lint:xliff translations

steps:
- uses: actions/checkout@v2

- name: Install PHP
uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.PHP_VERSION }}
coverage: none
extensions: ctype, iconv, intl
ini-values: date.timezone=${{ env.TZ }}, memory_limit=-1, session.gc_probability=0, opcache.enable=1, opcache.enable_cli=1, opcache.memory_consumption=256, opcache.max_accelerated_files=20000, opcache.validate_timestamps=0, realpath_cache_size=4096K, realpath_cache_ttl=600

- name: Install Composer 1.x
run: composer self-update --1

- name: Cache Composer dependencies
uses: actions/cache@v2
with:
path: $(composer config cache-files-dir)
key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}
restore-keys: ${{ runner.os }}-composer-

- name: Update dependencies
run: composer update --no-progress --prefer-dist --optimize-autoloader

- name: Install dependencies
run: composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader

- name: Tests
run: "${{ matrix.test.script }}"

javascript:
runs-on: ubuntu-latest
name: javascript / ${{ matrix.test.name }}
strategy:
fail-fast: false
matrix:
test:
- name: Building for development
script: yarn dev

- name: Building for production
script: yarn build

steps:
- name: Install Node.js
uses: actions/setup-node@v2-beta
with:
node-version: ${{ env.NODE_VERSION }}

- uses: actions/checkout@v2

- name: Cache node_modules
uses: actions/cache@v2
with:
path: $(yarn cache dir)
key: ${{ runner.os }}-node-modules-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-node-modules-
- run: yarn install --frozen-lockfile

- name: Tests
run: "${{ matrix.test.script }}"

0 comments on commit 2d72148

Please sign in to comment.