Skip to content

Commit e49b81c

Browse files
committed
minor #1571 run composer validate before installing dependencies (xabbuh)
This PR was merged into the main branch. Discussion ---------- run composer validate before installing dependencies in #1540 it was forgotten to sync the `composer.lock` file Commits ------- 813b144 run composer validate before installing dependencies
2 parents b1a3755 + 813b144 commit e49b81c

File tree

2 files changed

+56
-57
lines changed

2 files changed

+56
-57
lines changed

.github/workflows/lint.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ jobs:
4444
php-version: ${{ matrix.php-version }}
4545
tools: composer:v2
4646

47+
- name: Lint Composer config
48+
run: composer validate --no-check-publish --strict
49+
4750
- name: "Install dependencies"
4851
id: install
4952
run: composer install --ansi --no-interaction --no-progress
@@ -72,10 +75,6 @@ jobs:
7275
if: always() && steps.install.outcome == 'success'
7376
run: ./bin/console doctrine:schema:validate --skip-sync -vvv --no-interaction
7477

75-
- name: Lint Composer config
76-
if: always() && steps.install.outcome == 'success'
77-
run: composer validate --strict
78-
7978
- name: Check if any dependencies are compromised
8079
if: always() && steps.install.outcome == 'success'
8180
run: composer audit

composer.lock

Lines changed: 53 additions & 53 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)