From 2c1b0f8221e579634d72945a0f56f97ff527c12b Mon Sep 17 00:00:00 2001 From: Gregory Oschwald Date: Mon, 8 Apr 2024 15:09:48 -0700 Subject: [PATCH] Run composer validate from lint workflow --- .github/workflows/lint.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index 48ff6d6..5c8f6ea 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -22,6 +22,9 @@ jobs: - name: Install dependencies run: composer install --no-progress --prefer-dist --optimize-autoloader + - name: Validate composer.json + run: composer validate + - name: Lint with php-cs-fixer run: vendor/bin/php-cs-fixer fix --verbose --diff --dry-run