From 361c7ad86093369ad657a8b546ce330391e7a532 Mon Sep 17 00:00:00 2001 From: Benedikt Franke Date: Fri, 4 Apr 2025 21:05:48 +0200 Subject: [PATCH] Optimize order of operations for autofix php-cs-fixer might influence the output of composer docs --- .github/workflows/autofix.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/autofix.yml b/.github/workflows/autofix.yml index d68bc6f88..7fb7ade26 100644 --- a/.github/workflows/autofix.yml +++ b/.github/workflows/autofix.yml @@ -24,10 +24,11 @@ jobs: - run: composer normalize + - run: vendor/bin/php-cs-fixer fix + - run: composer docs - - run: npx prettier --write --tab-width=2 *.md **/*.md - - run: vendor/bin/php-cs-fixer fix + - run: npx prettier --write --tab-width=2 *.md **/*.md - uses: autofix-ci/action@v1 with: