Thematic - Empathy and Vitality revewal #293
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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 |