Release 1.6.0 #32
This file contains 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
# | |
# Website As App | |
# Run any website as standalone desktop application | |
# | |
# @author Marcin Orlowski <mail (#) marcinOrlowski (.) com> | |
# @copyright 2023-2024 Marcin Orlowski | |
# @license https://www.opensource.org/licenses/mit-license.php MIT | |
# @link https://github.com/MarcinOrlowski/website-as-app | |
# | |
name: "MD Lint" | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master, dev ] | |
jobs: | |
markdown_lint: | |
name: "Markdown linter" | |
runs-on: ubuntu-latest | |
steps: | |
# https://github.com/marketplace/actions/checkout | |
- name: "Checkout sources" | |
uses: actions/checkout@v4 | |
# https://github.com/marketplace/actions/paths-changes-filter | |
- name: "Look for changed doc related files..." | |
uses: dorny/paths-filter@v2 | |
id: filter | |
with: | |
filters: | | |
docs: | |
- '**/*.md' | |
# https://github.com/marketplace/actions/my-markdown-linter | |
- name: "Running markdown linter..." | |
uses: ruzickap/action-my-markdown-linter@v1 | |
if: steps.filter.outputs.docs == 'true' | |
with: | |
# LICENSE is externally sourced and we're not going to fix it. | |
exclude: "LICENSE.md" | |
config_file: .markdownlint.yml.dist |