Skip to content

Commit 0bb24df

Browse files
committed
test
1 parent 4b5680c commit 0bb24df

File tree

1 file changed

+14
-2
lines changed

1 file changed

+14
-2
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,17 @@ jobs:
2929
steps:
3030
- uses: actions/checkout@v2
3131

32-
- name: Install PHP
32+
- name: Install PHP
3333
uses: shivammathur/setup-php@v2
3434
with:
3535
php-version: ${{ env.PHP_VERSION }}
3636
coverage: none
3737
extensions: ctype, iconv, intl
3838
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
3939

40+
- name: Update Composer
41+
run: composer self-update
42+
4043
- name: Cache Composer dependencies
4144
uses: actions/cache@v3
4245
with:
@@ -48,10 +51,16 @@ jobs:
4851
- name: Install dependencies
4952
run: composer install --no-progress --no-suggest --prefer-dist --optimize-autoloader
5053

54+
- name: Configure Composer allow-plugins
55+
run: composer config --no-interaction allow-plugins.symfony/flex true
56+
57+
- name: Update Symfony Flex
58+
run: composer require symfony/flex --no-update
59+
5160
- name: Tests
5261
run: "${{ matrix.test.script }}"
5362

54-
javascript:
63+
javascript:
5564
runs-on: ubuntu-latest
5665
name: javascript / ${{ matrix.test.name }}
5766
strategy:
@@ -72,6 +81,9 @@ jobs:
7281

7382
- uses: actions/checkout@v2
7483

84+
- name: Remove package-lock.json
85+
run: rm -f package-lock.json
86+
7587
- name: Cache node_modules
7688
uses: actions/cache@v3
7789
with:

0 commit comments

Comments
 (0)