revise README.md and app.cfg.example #3
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
# This file is part of the EESSI build-and-deploy bot, | |
# see https://github.com/EESSI/eessi-bot-software-layer | |
# | |
# The bot helps with requests to add software installations to the | |
# EESSI software layer, see https://github.com/EESSI/software-layer | |
# | |
# author: Thomas Roeblitz (@trz42) | |
# | |
# license: GPLv2 | |
# | |
name: Markdown Lint | |
on: [push, pull_request] | |
# Declare default permissions as read only. | |
permissions: read-all | |
jobs: | |
markdown-lint: | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 # v3.1.0 | |
- name: Setup Node.js | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.0 | |
with: | |
node-version: '18' | |
- name: Install markdownlint-cli | |
run: npm install -g markdownlint-cli | |
- name: Run markdownlint | |
run: markdownlint "**/*.md" --ignore .git |