We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 43c51dd commit 1b41e4cCopy full SHA for 1b41e4c
.github/workflows/ci.yml
@@ -32,14 +32,32 @@ jobs:
32
npm install
33
34
- name: Run Pint
35
- run: vendor/bin/pint
+ run: vendor/bin/pint --test
36
37
- name: Format Frontend
38
run: npm run format
39
40
- name: Lint Frontend
41
run: npm run lint
42
43
+ rector:
44
+ runs-on: ubuntu-latest
45
+ steps:
46
+ - uses: actions/checkout@v4
47
+
48
+ - name: Setup PHP
49
+ uses: shivammathur/setup-php@v2
50
+ with:
51
+ php-version: '8.4'
52
53
+ - name: Install Dependencies
54
+ run: |
55
+ composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist
56
+ npm install
57
58
+ - name: Run Rector
59
+ run: vendor/bin/rector --dry-run
60
61
test:
62
runs-on: ubuntu-latest
63
0 commit comments