martin-g commented on a change in pull request #361: URL: https://github.com/apache/tomcat/pull/361#discussion_r487754324
########## File path: .github/workflows/lint.yml ########## @@ -0,0 +1,18 @@ +name: Lint + +on: [push, pull_request] + +jobs: + lint: + name: 🧹 Markdown and YAML Lint + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: yaml-lint + uses: ibiqlik/action-yamllint@v1 + - name: Use Node.js + uses: actions/setup-node@v1 + with: + node-version: '12.x' + - run: npm install -g markdownlint-cli@0.23.2 + - run: markdownlint '**/*.md' --ignore node_modules Review comment: Is it possible to pass the config file as an argument ? The idea is to move `.markdownlint.yml` from the root folder to be next to `lint.yml`. ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org