Pipelines p rbranch #2
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: Pull Request Validation | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
Run_Markdown_Lint_Check: | |
runs-on: windows-latest | |
steps: | |
- name: 'Install chef utils' | |
run: gem install chef-utils -v 16.6.14 | |
- name: 'Install markdown lint' | |
run: gem install mdl | |
- name: 'Run markdown lint' | |
run: mdl . -c .mdlrc |