gw-style-numbers-like-total.css: Added a snippet for Gravity Forms that style number fields like total field.
#1629
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 Lint (PR) | |
| on: [pull_request] | |
| jobs: | |
| PHPCS: | |
| name: PHPCS (Files Changed) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| fetch-depth: 0 # The blame will not work without this | |
| # PHP 8 will throw PHP Fatal error: Uncaught TypeError: vsprintf(): Argument #2 ($values) must be of type array, string given in ... | |
| - uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: '7.4' | |
| tools: composer:v2 | |
| coverage: none | |
| - name: Install dependencies | |
| run: composer install --dev --prefer-dist --no-progress --no-suggest | |
| - uses: thenabeel/action-phpcs@v8 | |
| with: | |
| files: "**.php,**.js,**.css" | |
| phpcs_path: ./vendor/bin/phpcs | |
| standard: phpcs.xml |