Advise library authors on how best to depend on child dependencies #524
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: CI for Markdown content | |
on: | |
push: | |
branches: | |
- 'main' | |
paths: | |
- 'lib/**/*.md' | |
pull_request: | |
paths: | |
- 'lib/**/*.md' | |
workflow_dispatch: | |
jobs: | |
lint: | |
name: Lint Markdown content | |
strategy: | |
fail-fast: false | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Check out the repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 10 | |
- name: Run markdownlint | |
uses: DavidAnson/[email protected] | |
with: | |
globs: | | |
lib/elixir/pages/**/*.md | |
README.md |