forked from yiisoft/docs
-
Notifications
You must be signed in to change notification settings - Fork 0
24 lines (24 loc) · 762 Bytes
/
docs.yml
File metadata and controls
24 lines (24 loc) · 762 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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: false
filter_mode: nofilter
files: '["cookbook", "guide"]'
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}