ci: separate linting commands, disable CSS for now

This commit is contained in:
Ben Goldsworthy 2021-04-15 05:06:36 +01:00
parent 2c9e14a45a
commit 7152579fd8

View file

@ -29,9 +29,16 @@ jobs:
- name: Install dependencies
run: composer install --prefer-dist --no-progress --ignore-platform-reqs && npm install
- name: Format and lint full codebase (PHP, JS, CSS)
run: composer run format && composer run lint
- name: Format and lint PHP code
run: composer run lint:php
- name: Format and lint JS code
run: composer run format:js && composer run lint:js
# TODO: Fix CSS errors
#- name: Format and lint CSS code
# run: composer run lint:css
# TODO: Add tests
# - name: Run test suite
# run: composer run-script test