Dont show edit and delete actions when removal requested #627
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 integration tests | |
on: [pull_request] | |
jobs: | |
build: | |
# Due to the cgroups 1 issue on the openconext container, we do not | |
# use the new ubuntu platform yet. As they started using cgroups v2 | |
runs-on: ubuntu-20.04 | |
timeout-minutes: 30 | |
env: | |
DOCKER_COMPOSE: docker-compose -f docker-compose-openconext.yml -f docker-compose-ci.yml | |
DOCKER_COMPOSE_PHP: docker-compose -f docker-compose-openconext.yml -f docker-compose-ci.yml exec -T php | |
DOCKER_COMPOSE_OPENCONEXT: docker-compose -f docker-compose-openconext.yml -f docker-compose-ci.yml exec -T openconext | |
DOCKER_COMPOSE_CYPRESS: docker-compose -f docker-compose-openconext.yml -f docker-compose-ci.yml exec -T cypress | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Start the docker images for testing | |
run: ${DOCKER_COMPOSE} up -d | |
- name: Import the certificate on the Cypress docker machine | |
run: ${DOCKER_COMPOSE_CYPRESS} sh /e2e/docker/conf/cypress_import_cert.sh | |
- name: Run composer | |
run: | | |
${DOCKER_COMPOSE_PHP} /usr/bin/composer install -n --prefer-dist -o --ignore-platform-reqs | |
env: | |
SYMFONY_ENV: dev | |
- name: Run yarn | |
run: | | |
${DOCKER_COMPOSE_PHP} yarn install | |
env: | |
SYMFONY_ENV: dev | |
- name: Create front end dependencies (yarn encore production) | |
run: | | |
${DOCKER_COMPOSE_PHP} yarn run encore production | |
env: | |
SYMFONY_ENV: dev | |
- name: Get the database up and running | |
run: | | |
${DOCKER_COMPOSE_PHP} bin/console doctrine:migrations:migrate | |
env: | |
SYMFONY_ENV: dev | |
- name: Remove leftover files | |
run: | | |
${DOCKER_COMPOSE_PHP} /bin/rm -rf /tmp/sp-dashboard/ /tmp/sp-dashboard-sessions/ | |
- name: Make the log and cache dir writable | |
run: | | |
${DOCKER_COMPOSE_PHP} chmod 777 /var/www/html/var/ -R | |
- name: Wait until the spdashboard is accessable | |
run: | | |
${DOCKER_COMPOSE_OPENCONEXT} sh /usr/local/sbin/spdup.sh | |
- name: Run Copy Paste Detector | |
run: | | |
${DOCKER_COMPOSE_PHP} sh -c 'composer jscpd' | |
continue-on-error: true | |
- name: Run CI tests | |
run: | | |
${DOCKER_COMPOSE_PHP} sh -c 'composer check' | |
- name: Run JS tests | |
run: | | |
${DOCKER_COMPOSE_PHP} sh -c 'composer jest' | |
- name: Run Cypress tests | |
run: | | |
${DOCKER_COMPOSE_CYPRESS} cypress run --browser chrome -C ./ci/qa/cypress.config.ts | |
continue-on-error: true |