Skip to content

Commit 5983e1b

Browse files
committed
fix
1 parent 6d57962 commit 5983e1b

File tree

1 file changed

+14
-1
lines changed

1 file changed

+14
-1
lines changed

.github/workflows/jit-nan-bug.yml

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,21 @@ jobs:
3232
php -v
3333
php -i | grep -E "opcache\.(enable_cli|jit)" || true
3434
35+
- name: Cache dependencies
36+
uses: actions/cache@v5
37+
with:
38+
path: ~/.cache/composer
39+
key: composer-${{ matrix.php-version }}-${{ hashFiles('composer.*') }}
40+
restore-keys: |
41+
composer-${{ matrix.php-version }}-
42+
composer-
43+
3544
- name: Install dependencies
36-
run: composer install --no-progress
45+
run: |
46+
composer remove --no-update --dev \
47+
phpstan/phpstan vimeo/psalm \
48+
infection/infection friendsofphp/php-cs-fixer php-coveralls/php-coveralls
49+
composer update --prefer-dist --no-interaction --no-progress
3750
3851
- name: Run reproducer (up to 100 attempts)
3952
run: ./jit-nan-bug-reproducer.sh

0 commit comments

Comments
 (0)