Linting Markdown files #65
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
name: markdown-lint | |
run-name: Linting Markdown files | |
env: | |
DOCS_CHANGED: false | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
jobs: | |
markdown-lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node.js environment | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
#- name: Check changed files | |
# id: check_file_changed | |
# run: | | |
# echo "### File Check! :rocket:" >> $GITHUB_STEP_SUMMARY | |
# # Check if there is a previous commit | |
# if git rev-parse HEAD^ >/dev/null 2>&1; then | |
# # Get a list of changed files between the last commit and the previous commit | |
# changed_files=$(git diff --name-only HEAD^ HEAD) | |
# else | |
# # In case of no previous commit, use the initial commit | |
# changed_files=$(git diff --name-only HEAD) | |
# fi | |
# # Check if any of the changed files have a .md extension | |
# echo "Changed files: $changed_files" | |
# if echo "$changed_files" | grep -q '\.md$'; then | |
# echo "DOCS_CHANGED=true" >> $GITHUB_ENV | |
# else | |
# echo "DOCS_CHANGED=false" >> $GITHUB_ENV | |
# fi | |
# echo "${{env.DOCS_CHANGED }} or $DOCS_CHANGED" | |
- name: Lint Markdown files | |
if: ${{env.DOCS_CHANGED == true}} | |
uses: ./.github/actions/md-lint |