~cytrogen/masto-fe

ref: e387175fc9a3ebfd72ab45ebfe43ecfabef7b0c3 masto-fe/.github/workflows/lint-md.yml -rw-r--r-- 774 bytes
e387175f — Matt Jankowski Fix RSpec/RepeatedExample cop (#24849) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
name: Markdown Linting
on:
  push:
    branches-ignore:
      - 'dependabot/**'
    paths:
      - '.github/workflows/lint-md.yml'
      - '.prettier*'
      - '**/*.md'
      - '!AUTHORS.md'
      - 'package.json'
      - 'yarn.lock'

  pull_request:
    paths:
      - '.github/workflows/lint-md.yml'
      - '.prettier*'
      - '**/*.md'
      - '!AUTHORS.md'
      - 'package.json'
      - 'yarn.lock'

jobs:
  lint:
    runs-on: ubuntu-latest

    steps:
      - name: Clone repository
        uses: actions/checkout@v3

      - name: Set up Node.js
        uses: actions/setup-node@v3
        with:
          cache: yarn

      - name: Install all yarn packages
        run: yarn --frozen-lockfile

      - name: Prettier
        run: yarn prettier --check "**/*.md"