summaryrefslogtreecommitdiffhomepage
path: root/.github/workflows/lint.yml
blob: ed1682b05d1c5d69b7a81e39a87d7383991261fa (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
name: ❄️ Lint

on: [pull_request]

jobs:
  yamllint:
    name: 🍶 YAML
    runs-on: ubuntu-latest
    steps:
      - 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'