Skip to content

Commit bf15344

Browse files
committed
[TASK] Switch to composer based ts linting
Seems that the used action for ts linting is not available anymore. So we switch to composer based linting.
1 parent 04579ef commit bf15344

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

.github/workflows/testing.yaml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,11 +35,14 @@ jobs:
3535
steps:
3636
- name: "Checkout"
3737
uses: actions/checkout@v4
38-
- name: "Run TypoScript lint"
39-
uses: TYPO3-Continuous-Integration/TYPO3-CI-Typoscript-Lint@v1
38+
- name: "Install PHP"
39+
uses: shivammathur/setup-php@v2
4040
with:
41-
files: "./Configuration"
42-
config_file: ".project/tests/typoscript-lint.yml"
41+
php-version: 8.2
42+
- name: "Composer Install"
43+
run: "composer install"
44+
- name: "Run typoscript lint"
45+
run: "composer test:typoscript:lint"
4346
php-cs-fixer:
4447
name: "PHP CS Fixer"
4548
runs-on: ubuntu-24.04

0 commit comments

Comments
 (0)