fix: ignore subscription.create stripe webhooks to prevent rapid writes to AN during stripe payment #72
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 Tests | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| workflow_call: | |
| jobs: | |
| php-tests: | |
| name: PHP tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Setup PHP | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '8.1' | |
| - name: Install PHP dependencies | |
| working-directory: packages/join-block | |
| run: composer install --no-interaction --prefer-dist | |
| - name: Run PHPUnit | |
| working-directory: packages/join-block | |
| run: ./vendor/bin/phpunit |