From a646a481db7285cbc419e9c4359e6f4f605067ae Mon Sep 17 00:00:00 2001 From: Rumperuu Date: Thu, 15 Apr 2021 03:06:46 +0100 Subject: [PATCH] ci: update PHP command to lint everything --- .github/workflows/php.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 619c495..fd9f87d 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -27,10 +27,10 @@ jobs: ${{ runner.os }}-php- - name: Install dependencies - run: composer install --prefer-dist --no-progress --ignore-platform-reqs + run: composer install --prefer-dist --no-progress --ignore-platform-reqs && npm install - - name: Lint PHP code - run: composer run lint:php + - name: Lint full codebase (PHP, JS, CSS) + run: composer run lint # TODO: Add tests # - name: Run test suite