Use github actions instead of travis CI (#180)

This commit is contained in:
Pavel Lobashov
2020-10-27 18:56:56 +03:00
committed by GitHub
parent c0ed15331e
commit f284c9951a
2 changed files with 15 additions and 8 deletions

15
.github/workflows/check.yml vendored Normal file
View File

@ -0,0 +1,15 @@
name: check
on: [push]
jobs:
markdownlint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js 12
uses: actions/setup-node@v1
with:
node-version: 12
- name: Check *.md files by `markdownlint`
run: |
npm install -g markdownlint-cli
markdownlint *.md