Fix root page not getting indexed when set as pid #1495
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: CI | |
on: | |
push: | |
branches: | |
- master | |
tags: | |
- '*' | |
pull_request: | |
branches: | |
- master | |
schedule: | |
- cron: '0 7 * * *' | |
jobs: | |
build: | |
name: 'PHP ${{ matrix.php }}, TYPO3 ${{ matrix.typo3 }}, Elasticsearch ${{ matrix.elasticsearch }}' | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
php: | |
- '8.1' | |
- '8.2' | |
typo3: | |
- '^11.5' | |
- '^12.4' | |
elasticsearch: | |
- '7.17.22' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
env: | |
PHP_VERSION: ${{matrix.php}} | |
TYPO3_VERSION: ${{matrix.typo3}} | |
ELASTICSEARCH_VERSION: ${{matrix.elasticsearch}} | |
run: docker compose run --rm app composer build | |
- name: Cleanup | |
if: ${{ always() }} | |
run: docker compose down --volumes |