mirror of
https://github.com/FriendsOfTYPO3/tea.git
synced 2024-11-10 03:36:12 +01:00
[TASK] Migrate JSON linting to GitHub Actions (#238)
This commit is contained in:
parent
a2da368d7b
commit
d87519aed8
1 changed files with 8 additions and 1 deletions
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
|
@ -54,6 +54,14 @@ jobs:
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
- name: "Run YAML lint"
|
- name: "Run YAML lint"
|
||||||
uses: TYPO3-Continuous-Integration/TYPO3-CI-YAML-Lint@v1
|
uses: TYPO3-Continuous-Integration/TYPO3-CI-YAML-Lint@v1
|
||||||
|
json-lint:
|
||||||
|
name: "JSON linter"
|
||||||
|
runs-on: ubuntu-20.04
|
||||||
|
steps:
|
||||||
|
- name: "Checkout"
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: "Run JSON lint"
|
||||||
|
uses: TYPO3-Continuous-Integration/TYPO3-CI-JSON-Lint@v1
|
||||||
php-cs-fixer:
|
php-cs-fixer:
|
||||||
name: "PHP CS Fixer"
|
name: "PHP CS Fixer"
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
|
@ -101,7 +109,6 @@ jobs:
|
||||||
matrix:
|
matrix:
|
||||||
command:
|
command:
|
||||||
- "composer:normalize"
|
- "composer:normalize"
|
||||||
- "json:lint"
|
|
||||||
- "php:sniff"
|
- "php:sniff"
|
||||||
- "php:stan"
|
- "php:stan"
|
||||||
php-version:
|
php-version:
|
||||||
|
|
Loading…
Reference in a new issue