Skip to content

Thematic - Empathy and Vitality revewal #293

Thematic - Empathy and Vitality revewal

Thematic - Empathy and Vitality revewal #293

Workflow file for this run

name: Markdown Linting
on:
push:
branches-ignore:
- "dependabot/**"
paths:
- "package*.json"
- "Gruntfile.coffee"
- ".markdownlint.json*"
- "**/*.md"
- ".github/workflows/lint-md.yml"
pull_request:
paths:
- "package*.json"
- "Gruntfile.coffee"
- ".markdownlint.json*"
- "**/*.md"
- ".github/workflows/lint-md.yml"
jobs:
lint-md:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v6
with:
cache: npm
- name: Install Grunt
run: npm i -g bower grunt-cli --force
- name: Install npm dependencies
run: npm ci --ignore-scripts
- name: Markdownlint
run: grunt markdownlint