[BUGFIX] Bring back support for random hash base in TYPO3 v12 #46
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: TYPO3 13 | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| typo3: ["13"] | |
| php: ["8.2", "8.3", "8.4"] | |
| composer: ["lowest", "highest"] | |
| env: | |
| GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - name: Run tests | |
| uses: ddev/github-action-setup-ddev@v1 | |
| - run: | | |
| if [ -n "$GH_TOKEN" ] && ! ddev composer config --global --list | grep -q "github-oauth.github.com"; then | |
| echo "Add composer github-oauth.github.com to ddev web container." | |
| ddev composer config --global github-oauth.github.com ${{ env.GH_TOKEN }} | |
| fi | |
| - run: ddev ci ${{ matrix.typo3 }} ${{ matrix.php }} ${{ matrix.composer }} | |