Merge pull request #184 from 10up/chore/reduce-logo-size #101
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: Linting | |
| on: | |
| pull_request: | |
| branches: | |
| - master | |
| - develop | |
| push: | |
| branches: | |
| - master | |
| - develop | |
| jobs: | |
| stylelint: | |
| name: stylelint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: stylelint | |
| uses: reviewdog/action-stylelint@v1 | |
| with: | |
| reporter: github-pr-review | |
| stylelint_input: "**/*.css" | |
| stylelint_config: ".stylelintrc.js" | |
| fail_on_error: true | |
| eslint: | |
| name: eslint | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-node@v3 | |
| with: | |
| node-version: "18" | |
| - name: eslint | |
| uses: reviewdog/action-eslint@v1 | |
| with: | |
| reporter: github-pr-review | |
| fail_on_error: true | |
| phpcs: | |
| name: phpcs | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v2 | |
| - name: Set PHP version | |
| uses: shivammathur/setup-php@v2 | |
| with: | |
| php-version: "8.1" | |
| coverage: none | |
| tools: composer:v2 | |
| - name: composer install | |
| run: composer install | |
| - name: PHPCS check | |
| run: ./vendor/bin/phpcs . |