Skip to content

Commit

Permalink
Add markdown checker
Browse files Browse the repository at this point in the history
  • Loading branch information
oskarbarcz committed Dec 16, 2024
1 parent 3872c91 commit fe36ce8
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .github/workflows/integrate.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
name: lint

on:
pull_request:
branches: [ 'main' ]

jobs:
lint:
runs-on: 'ubuntu-latest'
steps:
- name: 'Check out repository'
uses: actions/checkout@v4
- name: 'Install markdownlint-cli'
run: npm install -g markdownlint-cli
- name: 'Lint markdown files'
run: markdownlint '**/*.md'

0 comments on commit fe36ce8

Please sign in to comment.