Fix doctrine mapping & add integration test that fails on invalid schema #156
Workflow file for this run
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
name: Run QA tests (static analysis, lint and unit tests) | |
on: [pull_request] | |
jobs: | |
run-qa-tests: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Checkout devconf | |
uses: actions/checkout@v4 | |
with: | |
repository: OpenConext/OpenConext-devconf | |
ref: main | |
path: devconf | |
sparse-checkout: stepup | |
- name: Check devconf | |
run: | | |
cd devconf && ls -al && ls -al stepup/ | |
- name: Init environment | |
run: cd ci/docker && ./init.sh | |
- name: Build frontend assets | |
run: yarn && yarn encore production | |
- name: Run QA tests | |
run: | | |
cd ci/docker && docker compose exec -T webauthn bash -c ' | |
export APP_ENV=smoketest && composer check | |
' |