-
Notifications
You must be signed in to change notification settings - Fork 436
83 lines (78 loc) · 2.66 KB
/
lint.yml
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
# This is a basic workflow to help you get started with Actions
name: lint
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events
pull_request:
push:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
cspell-action:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: "${{ secrets.GITHUB_TOKEN }}"
- uses: carlosperate/[email protected]
id: download-chef-dictionary
with:
file-url: 'https://raw.githubusercontent.com/chef/chef_dictionary/main/chef.txt'
file-name: 'chef_dictionary.txt'
- uses: carlosperate/[email protected]
id: download-docs-dictionary
with:
file-url: 'https://raw.githubusercontent.com/chef/chef_dictionary/main/docs.txt'
file-name: 'docs_dictionary.txt'
- uses: carlosperate/[email protected]
id: download-cspell-config
with:
file-url: 'https://raw.githubusercontent.com/chef/chef-web-docs/main/cspell.json'
file-name: 'cspell.json'
- uses: streetsidesoftware/[email protected]
with:
files: '*.md'
root: './content'
github_token: "${{ secrets.GITHUB_TOKEN }}"
incremental_files_only: true
inline: error
strict: true
markdownlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
token: "${{ secrets.GITHUB_TOKEN }}"
- uses: carlosperate/[email protected]
id: download-mdl-config
with:
file-url: 'https://raw.githubusercontent.com/chef/chef-web-docs/main/.markdownlint.yaml'
file-name: 'markdownlint.yaml'
- uses: DavidAnson/markdownlint-cli2-action@v4
with:
globs: |
*.md
content/**/*.md
!_vendor/
!content/resources/_index.md
!content/habitat/
!infra_resources_readme.md
stylelint:
runs-on: ubuntu-latest
steps:
- name: "Download vale-chef"
uses: Legion2/[email protected]
with:
repository: chef/vale-chef
tag: 'v0.2.4'
path: tools/vale/chef
token: "${{ secrets.GITHUB_TOKEN }}"
- uses: errata-ai/vale-action@v1
with:
config: https://raw.githubusercontent.com/chef/chef-web-docs/main/.vale.ini
files: __onlyModified
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}