chore(info.xml): canonicalize PHP min, NC version range, licence spelling #507
Workflow file for this run
This file contains hidden or 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
| name: Code Quality | |
| on: | |
| push: | |
| branches: [main, development, feature/**, bugfix/**, hotfix/**] | |
| pull_request: | |
| branches: [main, beta, development] | |
| workflow_dispatch: | |
| jobs: | |
| quality: | |
| uses: ConductionNL/.github/.github/workflows/quality.yml@main | |
| with: | |
| app-name: openconnector | |
| # composer.json `config.platform.php` is pinned to 8.3, so phpcs/phpmd/etc | |
| # need the matching runtime or `vendor/composer/platform_check.php` aborts | |
| # with `Composer dependencies require a PHP version ">= 8.3.0"`. | |
| php-version: "8.3" | |
| enable-phpcs: true | |
| enable-psalm: true | |
| enable-phpstan: true | |
| enable-phpmetrics: true | |
| enable-frontend: true | |
| enable-eslint: true | |
| # Integration + E2E run against a live Nextcloud server with OR | |
| # checked out as an additional app (collections + journeys exercise | |
| # /index.php/apps/openregister/api/objects/openconnector/*). | |
| enable-newman: true | |
| newman-collection-path: "tests/postman" | |
| newman-environment-path: "tests/postman/openconnector.postman_environment.json" | |
| enable-playwright: true | |
| playwright-test-path: "tests/e2e/regression" | |
| additional-apps: '[{"repo":"ConductionNL/openregister","app":"openregister","ref":"development"}]' |