Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork143
feat: New fees input fields add tocart query andcheckout mutation#1036
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:Coding Standards | |
| on: | |
| push: | |
| branches: | |
| -develop | |
| -master | |
| pull_request: | |
| branches: | |
| -develop | |
| paths: | |
| -'**.php' | |
| -'!docs/**' | |
| jobs: | |
| Coding-Standards: | |
| runs-on:ubuntu-latest | |
| name:"Linting WooGraphQL code w/ PHPCS" | |
| steps: | |
| -name:Checkout | |
| uses:actions/checkout@v1 | |
| -name:Setup PHP | |
| uses:shivammathur/setup-php@v2 | |
| with: | |
| php-version:8.1 | |
| extensions:mbstring, intl | |
| tools:composer:v2 | |
| -name:Get Composer Cache Directory | |
| id:composer-cache | |
| run:echo "::set-output name=dir::$(composer config cache-files-dir)" | |
| -name:Install dependencies | |
| run:| | |
| composer install | |
| -name:Cache dependencies | |
| uses:actions/cache@v1 | |
| with: | |
| path:${{ steps.composer-cache.outputs.dir }} | |
| key:${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }} | |
| restore-keys:${{ runner.os }}-composer | |
| -name:Run PHP CodeSniffer | |
| run:composer lint |