-
-
Notifications
You must be signed in to change notification settings - Fork 91
34 lines (29 loc) · 719 Bytes
/
docs.yml
File metadata and controls
34 lines (29 loc) · 719 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
25
26
27
28
29
30
31
32
33
34
name: docs
on:
push:
branches:
- master
pull_request:
permissions:
contents: read
checks: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- 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: '["src/en"]'
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}