fix: wasm runtime compilation with latest version of pg_query extension #4630
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
| on: | |
| pull_request: | |
| paths: | |
| - 'src/**' | |
| - 'docs/**' | |
| - 'examples/**' | |
| - 'README.md' | |
| push: | |
| branches: | |
| - "1.x" | |
| paths-ignore: | |
| - 'CHANGELOG.md' | |
| # See https://stackoverflow.com/a/72408109 | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| documentation-linter: | |
| runs-on: "ubuntu-latest" | |
| steps: | |
| - name: "Checkout" | |
| uses: "actions/checkout@v5" | |
| - name: "Setup PHP Environment" | |
| uses: "./.github/actions/setup-php-env" | |
| with: | |
| php-version: "8.2" | |
| dependencies: "locked" | |
| coverage: "none" | |
| extensions: ':psr, bcmath, dom, hash, json, mbstring, xml, xmlwriter, xmlreader, zlib' | |
| cache-key-suffix: "-locked" | |
| - name: "Build Docs" | |
| run: "composer build:docs" | |
| - name: Check for uncommitted changes | |
| run: | | |
| if [[ -n "$(git status --porcelain)" ]]; then | |
| echo "Uncommitted changes detected, please run `composer build:docs` and commit the changes." | |
| git status | |
| exit 1 | |
| else | |
| echo "No uncommitted changes." | |
| fi | |
| - name: "MD Link Linter" | |
| uses: "docker://norberttech/md-link-linter:latest" | |
| with: | |
| entrypoint: "/composer/vendor/bin/mdlinklint" | |
| args: "--exclude=vendor --exclude=tests --exclude=examples --exclude=documentation ." |