Update Node.js to 18.20 #7928
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
| # This file is part of the Stooa codebase. | |
| # | |
| # (c) 2020 - present Runroom SL | |
| # | |
| # For the full copyright and license information, please view the LICENSE | |
| # file that was distributed with this source code. | |
| # This workflow will install PHP with all composer dependencies and checks any .php, .twig or .yaml linting error. | |
| name: Backend lint | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| backend-lint: | |
| name: PHP ${{ matrix.php }} | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: backend | |
| strategy: | |
| matrix: | |
| php: ['8.1'] | |
| steps: | |
| - name: Checkout the repository to Github workspace | |
| uses: actions/checkout@v3 | |
| - name: Setup the PHP environment | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: ${{ matrix.php }} | |
| coverage: none | |
| tools: cs2pr, composer | |
| ini-values: date.timezone=Europe/Madrid | |
| - name: Install all Composer dependencies | |
| uses: ramsey/composer-install@v2 | |
| with: | |
| working-directory: backend | |
| - name: Execute PHP CS Fixer to ensure coding standards | |
| run: composer php-cs-fixer -- --dry-run --format=checkstyle | cs2pr | |
| - name: Executes Rector | |
| run: composer rector -- --dry-run | |
| - name: Executes Composer normalize to ensure that composer file is correctly generated | |
| run: composer normalize --dry-run | |
| - name: Ensure that all the .yaml files are linted correctly | |
| run: composer lint-yaml | |
| - name: Ensure that all the .twig files are linted correctly | |
| run: composer lint-twig | |
| - name: Ensure that all the Symfony container gets linted correctly | |
| run: composer lint-container |