Fix wrong line endings #112
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: CI | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| phpstan: | |
| name: PHPStan | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: ramsey/composer-install@v2 # or alternative dependency management | |
| - uses: dingo-d/phpstan-wp-action@v2 | |
| spelling: | |
| name: Typos | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: crate-ci/typos@master | |
| coding-standards: | |
| name: WordPress Coding Standards | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: WPCS check | |
| uses: 10up/wpcs-action@stable | |
| with: | |
| standard: WordPress | |
| paths: . | |
| plugin-check: | |
| name: Plugin Check | |
| runs-on: ubuntu-latest | |
| env: | |
| NPM_CONFIG_LOGLEVEL: error | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Run Plugin Check | |
| uses: wordpress/plugin-check-action@v1 |