[Phase 1] Add Square Discount Codes (Coupons) Support #1006
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 Compatibility | |
| on: pull_request | |
| jobs: | |
| php-compatibility: | |
| name: PHP compatibility | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| - name: Prepare PHP | |
| uses: woocommerce/grow/prepare-php@da5279aa4d76745ef32970e49b5ef7903a3b457a # v2.2.2 | |
| with: | |
| tools: cs2pr | |
| install-deps: no | |
| - name: Prepare node | |
| uses: woocommerce/grow/prepare-node@da5279aa4d76745ef32970e49b5ef7903a3b457a # v2.2.2 | |
| with: | |
| node-version-file: ".nvmrc" | |
| ignore-scripts: "no" | |
| # The use of WP-Scripts results in PHP files being generated during the npm build step. | |
| # In order to ensure PHP Compatibility, the build step must be run in order to ensure all | |
| # files in the production release of the plugin are compatible with the target PHP versions. | |
| - name: Build production bundle | |
| run: npm run build | |
| # Unzip the newly created zip file to a separate directory. | |
| - name: Unzip production bundle | |
| run: | | |
| mv woocommerce-square.zip ~ | |
| cd ~ | |
| mkdir prod | |
| unzip woocommerce-square.zip -d prod | |
| cd - | |
| - name: Copy phpcompat sniffs to production directory | |
| run: cp phpcs-compat.xml.dist ~/prod/woocommerce-square/phpcs-compat.xml.dist | |
| # Installed globally to ensure dev dependencies are not included in compatibility sniffs. | |
| # At the time of writing no production version of PHPCompatibility/PHP-Compatibility supports | |
| # PHP 8.4 so a dev version is used in order to ensure the sniffs that have been created are | |
| # included in the checks. | |
| - name: Install PHP Compatibility dev-develop globally | |
| run: | | |
| composer global config --no-plugins allow-plugins.dealerdirect/phpcodesniffer-composer-installer true | |
| composer global require --dev phpcompatibility/php-compatibility:dev-develop#8daeec54772a592ad369be23ae02ed593c71e7f1 | |
| - name: Run PHPCompatibility on all files | |
| run: | | |
| cd ~/prod/woocommerce-square | |
| ~/.composer/vendor/bin/phpcs . --standard=phpcs-compat.xml.dist -ps --basepath=. |