Skip to content

Bump the react-related group with 2 updates #470

Bump the react-related group with 2 updates

Bump the react-related group with 2 updates #470

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