Skip to content
This repository has been archived by the owner on Nov 19, 2024. It is now read-only.

Commit

Permalink
Merge pull request #6624 from magento/ds_add-markdownlinting-action
Browse files Browse the repository at this point in the history
Enable markdown linting in Actions
  • Loading branch information
dshevtsov authored Feb 12, 2020
2 parents 7e558d4 + 6e88ba8 commit 7d88b19
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Markdown linting test

on:
pull_request:
branches:
- master
- 2.*-develop

jobs:
test:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Set up Ruby
uses: actions/setup-ruby@v1
with:
ruby-version: 2.6
- name: Install mdl gem
run: gem install mdl -v '0.7.0'
- name: Run mdl
run: mdl --style=_checks/styles/style-rules-prod --ignore-front-matter --git-recurse -- .

0 comments on commit 7d88b19

Please sign in to comment.