Skip to content

Commit

Permalink
feat: introduce automatic formatting check
Browse files Browse the repository at this point in the history
  • Loading branch information
jolexxa committed Aug 29, 2024
1 parent c36c56f commit 4d15556
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/format.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: 🧼 Formatting

on: push

jobs:
markdown-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout your repository using git
uses: actions/checkout@v4

- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 22

- name: Install dependencies
run: npm install

- name: Run Markdown Lint
run: npm run format:check

0 comments on commit 4d15556

Please sign in to comment.