ci: separate linting commands, disable CSS for now
This commit is contained in:
parent
2c9e14a45a
commit
7152579fd8
1 changed files with 9 additions and 2 deletions
11
.github/workflows/php.yml
vendored
11
.github/workflows/php.yml
vendored
|
@ -29,8 +29,15 @@ jobs:
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: composer install --prefer-dist --no-progress --ignore-platform-reqs && npm install
|
run: composer install --prefer-dist --no-progress --ignore-platform-reqs && npm install
|
||||||
|
|
||||||
- name: Format and lint full codebase (PHP, JS, CSS)
|
- name: Format and lint PHP code
|
||||||
run: composer run format && composer run lint
|
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
|
# TODO: Add tests
|
||||||
# - name: Run test suite
|
# - name: Run test suite
|
||||||
|
|
Reference in a new issue