mirror of
https://github.com/kreuzwerker/terraform-provider-docker.git
synced 2026-01-02 21:09:36 -05:00
36 lines
988 B
YAML
36 lines
988 B
YAML
## These checks will be superseded by documentation.yml
|
|
## when the provider documentation layout is moved to
|
|
## the Terraform Registry layout.
|
|
name: Website Checks
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
- 'release/**'
|
|
pull_request:
|
|
paths:
|
|
- .github/workflows/website.yaml
|
|
- website/docs/**
|
|
- .markdownlint.yml
|
|
|
|
jobs:
|
|
markdown-link-check:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: gaurav-nelson/github-action-markdown-link-check@v1
|
|
name: markdown-link-check website/docs/**/*.markdown
|
|
with:
|
|
use-quiet-mode: 'yes'
|
|
use-verbose-mode: 'yes'
|
|
config-file: '.markdownlinkcheck.json'
|
|
folder-path: 'website/docs'
|
|
file-extension: '.markdown'
|
|
markdown-lint:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: avto-dev/markdown-lint@v1
|
|
with:
|
|
args: 'website/docs'
|
|
config: '.markdownlint.yml'
|