Skip to content

Commit 176692a

Browse files
committed
Merged branch '4.6'
2 parents 2086166 + b05d0b7 commit 176692a

File tree

3 files changed

+30
-28
lines changed

3 files changed

+30
-28
lines changed

.github/workflows/browser-tests.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,7 @@ jobs:
1616
test-suite: '--mode=standard --profile=content-forms --tags=~@broken --non-strict'
1717
test-setup-phase-1: '--mode=standard --profile=setup-content-forms'
1818
secrets:
19+
AUTOMATION_CLIENT_ID: ${{ secrets.AUTOMATION_CLIENT_ID }}
20+
AUTOMATION_CLIENT_INSTALLATION: ${{ secrets.AUTOMATION_CLIENT_INSTALLATION }}
21+
AUTOMATION_CLIENT_SECRET: ${{ secrets.AUTOMATION_CLIENT_SECRET }}
1922
SLACK_WEBHOOK_URL: ${{ secrets.SLACK_WEBHOOK_URL }}

.github/workflows/ci.yaml

Lines changed: 3 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
- '8.3'
1818

1919
steps:
20-
- uses: actions/checkout@v4
20+
- uses: actions/checkout@v5
2121

2222
- name: Setup PHP Action
2323
uses: shivammathur/setup-php@v2
@@ -32,31 +32,6 @@ jobs:
3232
- name: Run code style check
3333
run: composer run-script check-cs -- --format=checkstyle | cs2pr
3434

35-
rector:
36-
name: Run rector
37-
runs-on: "ubuntu-22.04"
38-
strategy:
39-
matrix:
40-
php:
41-
- '8.3'
42-
steps:
43-
- uses: actions/checkout@v4
44-
45-
- name: Setup PHP Action
46-
uses: shivammathur/setup-php@v2
47-
with:
48-
php-version: ${{ matrix.php }}
49-
coverage: none
50-
extensions: 'pdo_sqlite, gd'
51-
tools: cs2pr
52-
53-
- uses: ramsey/composer-install@v3
54-
with:
55-
dependency-versions: highest
56-
57-
- name: Run rector
58-
run: vendor/bin/rector process --dry-run --ansi
59-
6035
tests:
6136
name: Unit tests & PHPStan static analysis
6237
runs-on: "ubuntu-22.04"
@@ -69,7 +44,7 @@ jobs:
6944
- '8.3'
7045

7146
steps:
72-
- uses: actions/checkout@v4
47+
- uses: actions/checkout@v5
7348

7449
- name: Setup PHP Action
7550
uses: shivammathur/setup-php@v2
@@ -103,7 +78,7 @@ jobs:
10378
- '8.3'
10479

10580
steps:
106-
- uses: actions/checkout@v4
81+
- uses: actions/checkout@v5
10782

10883
- name: Setup PHP Action
10984
uses: shivammathur/setup-php@v2

.github/workflows/rector.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
rector:
2+
name: Run rector
3+
runs-on: "ubuntu-22.04"
4+
strategy:
5+
matrix:
6+
php:
7+
- '8.3'
8+
steps:
9+
- uses: actions/checkout@v5
10+
11+
- name: Setup PHP Action
12+
uses: shivammathur/setup-php@v2
13+
with:
14+
php-version: ${{ matrix.php }}
15+
coverage: none
16+
extensions: 'pdo_sqlite, gd'
17+
tools: cs2pr
18+
19+
- uses: ramsey/composer-install@v3
20+
with:
21+
dependency-versions: highest
22+
23+
- name: Run rector
24+
run: vendor/bin/rector process --dry-run --ansi

0 commit comments

Comments
 (0)