1
0
mirror of https://github.com/tabler/tabler.git synced 2026-08-07 11:52:22 +04:00

Add markdown linting script (#2585)

This commit is contained in:
Paweł Kuna
2026-01-09 21:39:18 +01:00
committed by GitHub
parent 0c654c61f0
commit a24d5cab13
8 changed files with 508 additions and 14 deletions
+32
View File
@@ -0,0 +1,32 @@
name: Lint
on:
pull_request: null
env:
NODE: 22
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v6
- name: Install PNPM
uses: pnpm/action-setup@v4
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: "${{ env.NODE }}"
cache: 'pnpm'
- name: Install pnpm dependencies
run: pnpm install
- name: Lint Markdown
run: pnpm run lint