fix: pass JS linter
This commit is contained in:
parent
7ff883bda4
commit
fb179f1a95
2 changed files with 4 additions and 4 deletions
6
.github/workflows/php.yml
vendored
6
.github/workflows/php.yml
vendored
|
@ -27,13 +27,13 @@ jobs:
|
||||||
${{ runner.os }}-php-
|
${{ runner.os }}-php-
|
||||||
|
|
||||||
- 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
|
||||||
|
|
||||||
- name: Format and lint PHP code
|
- name: Lint PHP code
|
||||||
run: composer run lint:php
|
run: composer run lint:php
|
||||||
|
|
||||||
- name: Lint JS code
|
- name: Lint JS code
|
||||||
run: composer run lint:js
|
run: composer run format:js:fix && composer run lint:js
|
||||||
|
|
||||||
# TODO: Fix CSS errors
|
# TODO: Fix CSS errors
|
||||||
#- name: Format and lint CSS code
|
#- name: Format and lint CSS code
|
||||||
|
|
Reference in a new issue