Remove unused step #293
Workflow file for this run
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
# Lint all Markdown files in the repository. | |
on: | |
push: | |
paths: | |
- "**.md" | |
- ".github/workflows/markdown-lint.yaml" | |
name: Lint Markdown | |
jobs: | |
MarkdownLint: | |
name: Lint Markdown | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
# git with HTTP authentication provides an easy way for us to install | |
# unreleased commits of NPM projects. | |
- name: Reconfigure git to use HTTP authentication | |
run: git config --global url."https://${{ secrets.GITHUB_TOKEN }}@github.com/".insteadOf ssh://[email protected]/ | |
- name: Install problem matcher | |
uses: xt0rted/markdownlint-problem-matcher@v3 | |
- name: Lint Markdown | |
run: npx markdownlint-cli2 |