Fix doctrine mapping & add smoketest that fails on invalid schema #146
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: Run CI tests | |
run: | | |
cd ci/docker && docker compose exec -T webauthn bash -c ' | |
composer check | |
' | |
# - name: Composer install | |
# run: composer install | |
# | |
# - name: Build frontend assets | |
# run: yarn && yarn encore production | |
# | |
# - name: Run QA tests | |
# run: composer check |