Skip to content

Commit b12ca0e

Browse files
committed
minor #267 [Live] fix build-packages.php in CI (kbond)
This PR was merged into the 2.x branch. Discussion ---------- [Live] fix build-packages.php in CI | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | Tickets | n/a | License | MIT `build-packages.php` wasn't called correctly. Commits ------- e18f3e6 fix build-packages.php in CI
2 parents bb5b7c7 + e18f3e6 commit b12ca0e

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/test.yaml

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,7 @@ jobs:
108108
- uses: shivammathur/setup-php@v2
109109
with:
110110
php-version: '8.0'
111+
- run: php .github/build-packages.php
111112

112113
- name: TwigComponent Dependencies
113114
uses: ramsey/composer-install@v2
@@ -125,9 +126,7 @@ jobs:
125126
dependency-versions: lowest
126127
- name: LiveComponent Tests
127128
working-directory: src/LiveComponent
128-
run: |
129-
php ../../.github/build-packages.php
130-
php vendor/bin/simple-phpunit
129+
run: php vendor/bin/simple-phpunit
131130

132131
tests-php-high-deps:
133132
runs-on: ubuntu-latest
@@ -136,6 +135,7 @@ jobs:
136135
- uses: shivammathur/setup-php@v2
137136
with:
138137
php-version: '8.0'
138+
- run: php .github/build-packages.php
139139

140140
- name: Chartjs Dependencies
141141
uses: ramsey/composer-install@v2
@@ -183,9 +183,7 @@ jobs:
183183
working-directory: src/LiveComponent
184184
- name: LiveComponent Tests
185185
working-directory: src/LiveComponent
186-
run: |
187-
php ../../.github/build-packages.php
188-
php vendor/bin/simple-phpunit
186+
run: php vendor/bin/simple-phpunit
189187

190188
tests-js:
191189
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)