summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows
diff options
context:
space:
mode:
authorYukihiro "Matz" Matsumoto <[email protected]>2020-12-19 17:31:54 +0900
committerGitHub <[email protected]>2020-12-19 17:31:54 +0900
commit8f06789cb311f31c1ab3fca534a4ab660391db75 (patch)
tree1ef2de0ec2870b6955238ba56b77a434aa772ce6 /.github/workflows
parentfcc9b7fc2a6d32bd055bbb35396f3af62165a1cb (diff)
parent97eed4493f62da83f81622f5045a5c0db3ef22d2 (diff)
downloadmruby-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/workflows')
-rw-r--r--.github/workflows/lint.yml11
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'