Remove axon-CLI related links & hide troubleshooting in sidebar #262
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
# .github/workflows/check_spelling.yml | |
name: Check Spelling | |
on: | |
pull_request: | |
paths: | |
- '**.js' | |
- '**.vue' | |
- '**.txt' | |
- '**.html' | |
- '**.md' | |
jobs: | |
spelling: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Check Spelling | |
uses: UnicornGlobal/spellcheck-github-actions@master | |
# Linting: | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Lint changelog file | |
# uses: docker://avtodev/markdown-lint:v1.1.0 | |
# with: | |
# rules: '/lint/rules/changelog.js' | |
# config: '/lint/config/changelog.yml' | |
# entrypoint: /docker-entrypoint.sh # or wherever the markdownlint binary is located | |
# args: 'README.md' | |