fix(contract): acf_fc_layout is no longer flagged as an undeclared prop #117
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: Tests | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| php: ['8.3', '8.4'] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| coverage: none | |
| - name: Install dependencies | |
| run: composer install --no-progress --no-suggest | |
| - name: PHPStan | |
| run: composer phpstan | |
| - name: PHPUnit | |
| run: composer test | |
| adr-index: | |
| name: docs/adr/ index is in sync | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Validate the ADR directory against the index | |
| run: python3 scripts/check-adr-index.py | |
| composer: | |
| name: composer hygiene | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.3' | |
| coverage: none | |
| - run: composer validate --strict | |
| - run: composer install --no-progress --no-suggest | |
| - name: Audit dependencies for known advisories | |
| run: composer audit --abandoned=report | |
| - name: composer.json is normalized | |
| run: composer normalize --dry-run |