v2.12.16: fixes blockchain icons on checkout page (on Safari and iPhone) #474
Workflow file for this run
This file contains 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: WooCommerce Linter | |
on: push | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Setup PHP | |
uses: shivammathur/setup-php@v2 | |
with: | |
php-version: '8.0' | |
tools: composer:v2 | |
- name: install linter | |
run: | | |
cd lint && composer install && cd .. | |
- name: lint version | |
run: | | |
php ./lint/vendor/bin/phpcs --version | |
- name: lint | |
run: | | |
php ./lint/vendor/bin/phpcs --standard=./lint/pbs-rules-set.xml --warning-severity=0 --report-source --report-full=phpcs-report.txt --extensions=php,html depay-woocommerce-payments.php includes | |
- uses: actions/upload-artifact@v3 | |
if: failure() | |
with: | |
name: phpcs-report | |
path: ${{ github.workspace }}/phpcs-report.txt |