-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
124 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
name: Admin | ||
on: | ||
pull_request: | ||
|
||
jobs: | ||
eslint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: shopware/github-actions/eslint@main | ||
with: | ||
extensionName: ${{ github.event.repository.name }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
name: PHP checks | ||
|
||
on: | ||
push: | ||
branches: | ||
- trunk | ||
pull_request: | ||
workflow_dispatch: | ||
workflow_call: | ||
|
||
permissions: | ||
contents: read | ||
id-token: write | ||
|
||
jobs: | ||
phpstan: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
PLATFORM_BRANCH: ["6.6.0.0", "trunk"] | ||
fail-fast: false | ||
steps: | ||
- uses: octo-sts/action@main | ||
id: octo-sts | ||
with: | ||
scope: shopware | ||
identity: ${{ github.event.repository.name }} | ||
- uses: shopware/github-actions/setup-extension@main | ||
with: | ||
extensionName: ${{ github.event.repository.name }} | ||
install: true | ||
installAdmin: true | ||
installStorefront: true | ||
dependencies: | | ||
[ | ||
{ | ||
"name":"SwagCommercial", | ||
"repo": "https://github.com/shopware/SwagCommercial.git", | ||
"token": "${{ steps.octo-sts.outputs.token }}" | ||
}, | ||
{ | ||
"name":"SwagCmsExtensions", | ||
"repo": "https://github.com/shopware/SwagCmsExtensions.git", | ||
"token": "${{ steps.octo-sts.outputs.token }}" | ||
} | ||
] | ||
extraRepositories: | | ||
{ | ||
"${{ github.event.repository.name }}": { | ||
"type": "path", | ||
"url": "custom/plugins/${{ github.event.repository.name }}", | ||
"symlink": true | ||
}, | ||
"SwagCommercial": { | ||
"type": "path", | ||
"url": "custom/plugins/SwagCommercial", | ||
"symlink": true | ||
}, | ||
"SwagCmsExtensions": { | ||
"type": "path", | ||
"url": "custom/plugins/SwagCmsExtensions", | ||
"symlink": true | ||
} | ||
} | ||
- name: Prepare phpstan | ||
working-directory: custom/plugins/${{ github.event.repository.name }} | ||
run: | | ||
composer dump-autoload --dev -d "${GITHUB_WORKSPACE}/custom/plugins/SwagCmsExtensions" | ||
composer dump-autoload --dev -d "${GITHUB_WORKSPACE}/custom/plugins/SwagCommercial" | ||
sed -i 's|reportUnmatchedIgnoredErrors: true|reportUnmatchedIgnoredErrors: false|' ./phpstan.neon.dist | ||
if [[ "${{ matrix.PLATFORM_BRANCH }}" == "6.6.0.0" ]]; then | ||
sed -i '/type_perfect/d' ./phpstan.neon.dist | ||
sed -i '/narrow_return: true/d' ./phpstan.neon.dist | ||
sed -i '/no_mixed: true/d' ./phpstan.neon.dist | ||
sed -i '/null_over_false: true/d' ./phpstan.neon.dist | ||
fi | ||
- run: | | ||
symfony composer -d custom/plugins/${{ github.event.repository.name }} run phpstan | ||
validate-openapi-typescript: | ||
runs-on: shopware-amd64 # TODO: replace with ubuntu-latest after debugging | ||
container: ghcr.io/catthehacker/ubuntu:act-22.04 | ||
env: | ||
runner: self-hosted | ||
COMPOSER_ALLOW_SUPERUSER: 1 | ||
services: | ||
mysql: | ||
image: mysql:8.0 | ||
env: | ||
MYSQL_DATABASE: shopware | ||
MYSQL_ALLOW_EMPTY_PASSWORD: true | ||
steps: | ||
- name: Setup Extension | ||
uses: shopware/github-actions/setup-extension@main | ||
env: | ||
runner: ${{ runner.environment }} | ||
with: | ||
extensionName: ${{ github.event.repository.name }} | ||
install: true | ||
installAdmin: true | ||
installStorefront: true | ||
mysqlVersion: skip | ||
- working-directory: custom/plugins/${{ github.event.repository.name }} | ||
run: | | ||
${GITHUB_WORKSPACE}/bin/console bundle:dump | ||
composer init:admin | ||
composer openapi:generate | ||
git update-index --refresh || printf '' | ||
git diff-index "${{ github.sha }}" --quiet -- src/Resources/app/administration/src/types/openapi.d.ts || (echo "Please run 'composer openapi:generate' to update openapi.d.ts" && exit 1) | ||
- name: Debug sleep | ||
if: always() | ||
run: sleep 1d |