Add remark check to GHA

This commit is contained in:
flip1995 2020-01-21 15:29:54 +01:00
parent 1158c18ae7
commit 20c3319961
No known key found for this signature in database
GPG Key ID: 693086869D506637
1 changed files with 24 additions and 0 deletions

24
.github/workflows/remark.yml vendored Normal file
View File

@ -0,0 +1,24 @@
name: Remark
on:
push:
paths:
- '**.md'
pull_request:
paths:
- '**.md'
jobs:
remark:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2.0.0
- name: Setup Node.js
uses: actions/setup-node@v1.1.0
- name: Install remark
run: npm install remark-cli remark-lint remark-lint-maximum-line-length remark-preset-lint-recommended
- name: Check *.md files
run: git ls-files -z '*.md' | xargs -0 -n 1 -I {} ./node_modules/.bin/remark {} -u lint -f > /dev/null