From 2c9e14a45aa08a628a526246acff806c8d2098bf Mon Sep 17 00:00:00 2001 From: Rumperuu Date: Thu, 15 Apr 2021 03:21:38 +0100 Subject: [PATCH] ci: add formatting command --- .github/workflows/php.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index fd9f87d..4862d9c 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -29,8 +29,8 @@ jobs: - name: Install dependencies run: composer install --prefer-dist --no-progress --ignore-platform-reqs && npm install - - name: Lint full codebase (PHP, JS, CSS) - run: composer run lint + - name: Format and lint full codebase (PHP, JS, CSS) + run: composer run format && composer run lint # TODO: Add tests # - name: Run test suite