Add note about Composer Require Checker used with PHPStorm attributes #138
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: docs | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Fetch styles | |
run: | | |
sudo apt install wget unzip | |
wget https://github.com/errata-ai/Microsoft/releases/latest/download/Microsoft.zip | |
unzip Microsoft.zip -d .github/styles | |
- name: Check | |
uses: errata-ai/vale-action@reviewdog | |
with: | |
reporter: github-check | |
fail_on_error: true | |
filter_mode: nofilter | |
files: '["cookbook", "guide"]' | |
env: | |
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} |