We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 04579ef commit bf15344Copy full SHA for bf15344
.github/workflows/testing.yaml
@@ -35,11 +35,14 @@ jobs:
35
steps:
36
- name: "Checkout"
37
uses: actions/checkout@v4
38
- - name: "Run TypoScript lint"
39
- uses: TYPO3-Continuous-Integration/TYPO3-CI-Typoscript-Lint@v1
+ - name: "Install PHP"
+ uses: shivammathur/setup-php@v2
40
with:
41
- files: "./Configuration"
42
- config_file: ".project/tests/typoscript-lint.yml"
+ php-version: 8.2
+ - name: "Composer Install"
43
+ run: "composer install"
44
+ - name: "Run typoscript lint"
45
+ run: "composer test:typoscript:lint"
46
php-cs-fixer:
47
name: "PHP CS Fixer"
48
runs-on: ubuntu-24.04
0 commit comments