Bump the php-dev group across 1 directory with 7 updates #403
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: Run QA tests (static analysis, lint and unit tests) | |
| on: [pull_request] | |
| jobs: | |
| run-qa-tests: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: /var/www/html/ | |
| container: | |
| image: ghcr.io/openconext/openconext-basecontainers/php82-apache2-node20-composer2:latest | |
| volumes: | |
| - .:/var/www/html | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Composer install | |
| run: composer install | |
| - name: Yarn install | |
| run: yarn | |
| - name: build frontend | |
| run: yarn encore prod | |
| - name: Run QA tests | |
| run: composer check |