Bump the react-related group with 2 updates #470
Workflow file for this run
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: PHP extensions up to date | |
| on: | |
| - push | |
| - workflow_dispatch | |
| - pull_request | |
| jobs: | |
| test: | |
| name: Run tests | |
| runs-on: 'ubuntu-latest' | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Dump module output | |
| run: | | |
| export MODULES=$(docker run --rm ghcr.io/violinist-dev/php-base:8.3-multi php -m) | |
| envsubst < docs/introduction/extensions.txt > docs/introduction/extensions.mdx | |
| - name: Check it's the same | |
| run: | | |
| if [ $(git status -s | wc -c) -ne 0 ]; then | |
| echo "Working tree is not clean:" | |
| git status | |
| git diff | |
| exit 1 | |
| fi |