diff options
| author | Yukihiro "Matz" Matsumoto <[email protected]> | 2020-12-19 17:31:54 +0900 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-12-19 17:31:54 +0900 |
| commit | 8f06789cb311f31c1ab3fca534a4ab660391db75 (patch) | |
| tree | 1ef2de0ec2870b6955238ba56b77a434aa772ce6 /.github | |
| parent | fcc9b7fc2a6d32bd055bbb35396f3af62165a1cb (diff) | |
| parent | 97eed4493f62da83f81622f5045a5c0db3ef22d2 (diff) | |
| download | mruby-8f06789cb311f31c1ab3fca534a4ab660391db75.tar.gz mruby-8f06789cb311f31c1ab3fca534a4ab660391db75.zip | |
Merge pull request #5232 from jbampton/lint-markdown
feat(CI): add a GitHub Action to lint the Markdown
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/lint.yml | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e04d0fc75..ed1682b05 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -10,3 +10,14 @@ jobs: - uses: actions/checkout@v2 - name: ๐งน YAML Lint uses: ibiqlik/action-yamllint@v3 + markdownlint: + name: ๐ธ Markdown + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: ๐ Use Node.js + uses: actions/[email protected] + with: + node-version: '12.x' + - run: npm install -g [email protected] + - run: markdownlint '**/*.md' |
